🌐
CodePen
codepen.io › tag › gradient-animation
Pens tagged 'gradient-animation' on CodePen
CodePen doesn't work very well without JavaScript · We're all for progressive enhancement, but CodePen is a bit unique in that it's all about writing and showing front end code, including JavaScript. It's required to use most of the features of CodePen · Need to know how to enable it?
🌐
CodePen
codepen.io › P1N2O › pen › pyBNzX
🌈 Pure CSS Animated Gradient Background
A smooth, infinitely-looping animated background built entirely with CSS — no JavaScript required. The gradient seamlessly transitions through vibrant ...
🌐
CodePen
codepen.io › tag › animated-gradient
Pens tagged 'animated-gradient' on CodePen
CodePen doesn't work very well without JavaScript · We're all for progressive enhancement, but CodePen is a bit unique in that it's all about writing and showing front end code, including JavaScript. It's required to use most of the features of CodePen · Need to know how to enable it?
🌐
CodePen
codepen.io › jayjoomler › pen › WXgwvx
Background gradient animation
In CodePen, whatever you write in the HTML editor is what goes within the <body> tags in a basic HTML5 template. If you need things in the <head> of the document, put that code here. ... The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https. ↑ Insert the most common viewport meta tag · CSS ...
🌐
CodePen
codepen.io › redstapler › pen › LMyLxP
Pure CSS Animated Gradient Background
Minimize CSS Editor · Fold All · Unfold All · body { margin:0; } .wrapper { width: 100%; height: 100%; position: absolute; background: linear-gradient(45deg,#F17C58, #E94584, #24AADB , #27DBB1,#FFDC18, #FF3706); background-size: 600% 100%; animation: gradient 16s linear infinite; animation-direction: alternate; } @keyframes gradient { 0% {background-position: 0%} 100% {background-position: 100%} } !
🌐
CodePen
codepen.io › argyleink › pen › vEBmZNw
Animated CSS Gradient Text
/* these type the CSS variable as color unlocking the ability for the browser to animate just that portion */ @property --@color-1 { syntax: "<color>"; inherits: false; initial-value: hsl(98 100% 62%); } @property --@color-2 { syntax: "<color>"; inherits: false; initial-value: hsl(204 100% 59%); } /* keyframes that change the color variable */ @keyframes gradient-change { to { --@color-1: hsl(210 100% 59%); --@color-2: hsl(310 100% 59%); } } article { /* apply variable changes over time */ animation: gradient-change 2s linear infinite alternate; background: linear-gradient( /* in oklch produces more vibrant gradient results learn more https://developer.chrome.com/docs/css-ui/access-colors-spaces#color_interpolation */ to right in oklch, /* use the variables in a gradient (or wherever!)
🌐
CodePen
codepen.io › quadbaup › full › ZEQqzqM
Pure CSS Animated Gradient Generator
Edit Pen · {"__browser":{"country":"US","device":"unknown_device","mobile":false,"name":"chrome","platform":"unknown_platform","version":"537"},"__constants":{},"__CPDATA":{"domain_iframe":"https://cdpn.io","environment":"production","host":"codepen.io","iframe_allow":"accelerometer *; bluetooth ...
🌐
CodePen
codepen.io › Volorf › pen › qopzaQ
Animated gradient button [pure css]
Minimize CSS Editor · Fold All · Unfold All · body background #f5f5f5 display flex justify-content center align-items center width 100vw height 100vh .btn, .btn2 width 300px height 100px font-size 30px text-align center line-height 100px color rgba(255,255,255,0.9) border-radius 50px background linear-gradient(-45deg, #FFA63D, #FF3D77, #338AFF, #3CF0C5) background-size 600% animation anime 16s linear infinite .btn2 position absolute margin-top -70px z-index -1 filter blur(30px) opacity 0.8 @keyframes anime 0% background-position 0% 50% 50% background-position 100% 50% 100% background-position 0% 50% !
🌐
CodePen
codepen.io › versi › pen › XqwqYW
Simple CSS Gradient Animation Background For HTML Elements
<!-- Inspired from Bulma --> <div class="container"> <section class="is-center"> <span class="title"><font color="#ff470f">gradient</font> elements</span> </section> <hr> <section> <h3>You can use the moving gradient background either for buttons or cards.</h3> <p>Example of a button:</p> <a href="#" class="button rainbow white">Button</a> &nbsp;<code>&lt;a class="button rainbow white"&gt;</code> <br></br> <p>Example of a card:</p> <div class="card rainbow white"> <p style="font-size: 35px;">A gradient card</p> </div> </section> <hr> <section> <p>To use it, just add these classes in your CSS f
Find elsewhere
🌐
CodePen
codepen.io › ankhr › pen › KKwzNBm
Pure CSS Gradient Animation
Minimize CSS Editor · Fold All · Unfold All · .granimate { background-color: #2ecc71; animation: hue 11s linear 0s infinite reverse; } .granimate::before { background: linear-gradient(105deg, rgba(255, 190, 0, 0), #ffbe00); animation: hue 12s linear 1s infinite; } @keyframes hue { to { filter: hue-rotate(1turn); } } .full { display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; color: white; font-family: system-ui; font-size: 48px; } .full::before { content: ''; position: absolute; width: 100vw; height: 100vh; } .full::after { content: 'Hue hue hue'; position: relative; text-align: center; } body { margin: 0; } !
🌐
CodePen
codepen.io › mike-schultz › pen › NgQvGO
Animated CSS Gradient Border
HTML CSS JS Result · HTML Options · Format HTML · View Compiled HTML · Analyze HTML · Maximize HTML Editor · Minimize HTML Editor · Fold All · Unfold All · <div class="gradient-border" id="box">Animated <br>CSS<br>Gradient Border</div> ! ...
🌐
CodePen
codepen.io › P1N2O › embed › pyBNzX
CodePen Embed - 🌈 Pure CSS Animated Gradient Background
body { background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); background-size: 400% 400%; animation: gradient 15s ease infinite; height: 100vh; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } // No JS! 🙂 · This Pen is owned by Manuel Pinto on CodePen. See more by @P1N2O on CodePen · https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.2/css/bootstrap.min.css ·
🌐
CodePen
codepen.io › rubaaa › pen › PowNKax
Pure CSS Gradient Background Animation
body { margin: 0; width: 100%; height: 100vh; font-family: "Exo", sans-serif; color: #fff; background: linear-gradient(45deg, #49a09d, #5f2c82, #49a09d, #5f2c82); background-size: 400% 400%; animation: gradientBG 15s ease infinite; } @keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .containerbanner { width: 100%; position: absolute; top: 35%; text-align: center; } ! JS Options · Format JavaScript · View Compiled JavaScript · Analyze JavaScript · Maximize JavaScript Editor · Minimize JavaScript Editor · Fold All · Unfold All · // Pure CSS - No JS // by Manuel Pinto // https://manuelpinto.in ·
🌐
CodePen
codepen.io › caseycallow › pen › yMNqPY
Pure CSS Gradient Text Animation Effect
<h1 class="header">Pure CSS Gradient Text Animation Effect</h1> <!-- Originally seen on https://daneden.github.io/animate.css/ --> ! CSS Options · Format CSS · View Compiled CSS · Analyze CSS · Maximize CSS Editor · Minimize CSS Editor · Fold All · Unfold All ·
🌐
CodePen
codepen.io › smitpatelx › pen › GRZayyO
Stripe Website Gradient Animation
HTML CSS JS Result · HTML Options · Format HTML · View Compiled HTML · Analyze HTML · Maximize HTML Editor · Minimize HTML Editor · Fold All · Unfold All · <html> <head> <title>Stripe Gradient</title> </head> <body> <canvas id="gradient-canvas"> </canvas> <h1> Stripe Gradient Animation </h1> </body> </html> !
🌐
Slider Revolution
sliderrevolution.com › home › css animated gradient examples to enhance your web design
CSS Animated Gradient Examples To Enhance Your Web Design
September 25, 2024 - Discover stunning CSS animated gradient examples to elevate your web design. Learn smooth transitions, practical tips, and essential techniques.
🌐
CodePen
codepen.io › quasimondo › pen › AZedgK
Animated Background Gradient
In CodePen, whatever you write in the HTML editor is what goes within the <body> tags in a basic HTML5 template. If you need things in the <head> of the document, put that code here. ... The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https. ↑ Insert the most common viewport meta tag · CSS ...
🌐
CodePen
codepen.io › shshaw › pen › RwJwJJx
Animated Border Gradient
Minimize CSS Editor · Fold All · Unfold All · html { height: 100%; background: #223; display: grid; place-items: center; } .box { width: 60vmin; height: 50vmin; display: grid; place-content: center; color: white; text-shadow: 0 1px 0 #000; --border-angle: 0turn; // For animation. --main-bg: conic-gradient( from var(--border-angle), #213, #112 5%, #112 60%, #213 95% ); border: solid 5px transparent; border-radius: 2em; --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #08f, #f03 99%, transparent); background: // padding-box clip this background in to the overall element except the border.
🌐
CodePen
codepen.io › oscar-jite › pen › dyZJmxp
Gradient Text Animation
In CodePen, whatever you write in the HTML editor is what goes within the <body> tags in a basic HTML5 template. If you need things in the <head> of the document, put that code here. ... The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https. ↑ Insert the most common viewport meta tag · CSS ...
🌐
CodePen
codepen.io › jchaffin › pen › KvvqKE
Animated Text Gradient
Minimize CSS Editor · Fold All · Unfold All · // Colors $page-background-color: #2F3C4F; $gradient-color-1: #F57170; $gradient-color-2: #10DDC2; // Keyframes @keyframes animationgradienttitle { 0% { background-position: 0 1600px; } 100% { background-position: 1600px 0; } } // Tag Selectors body { background-color: $page-background-color; } h1 { margin: 0; } .c-article { margin-top: 10rem; text-align: center; } .c-article__header { position: relative; } .c-article__title { font-family: 'Scope One', serif; font-size: 3em; color: #fc3735; background: -webkit-linear-gradient(left, $gradient-col