How to Create a Moving Website Background Using CSS Only
Submitted by argie on Saturday, November 30, 2013 - 11:19.
This tutorial will teach you on how to create a moving background image using only CSS.
I uses @keyframes rules i this tutorial to animate the background. To understand more about this rule, let me provide the definition and usage of this rule. with the @keyframes rule, you can create animations. The animation is created by gradually changing from one set of CSS styles to another. During the animation, you can change the set of CSS styles many times. Specify when the change will happen in percent, or the keywords "from" and "to", which is the same as 0% and 100%. 0% is the beginning of the animation, 100% is when the animation is complete. For best browser support, you should always define both the 0% and the 100% selectors.
Note: Use the animation properties to control the appearance of the animation, and also to bind the animation to selectors.
To understand more its usage fallow the steps bellow;
Creating Our HTML Display
The code bellow will give us the graphical display of our tutorial, copy the code bellow and save it as index.html.
That's it you've been successfully created a moving background image using CSS only.
- <html>
- <head>
- <title>Css Tutorial</title>
- </head>
- <body>
- <h1 style="font-family: arial; font-style: italic; text-align: center; margin-top: 20%; color: #FFFFFF; font-size: 30px; font-weight: 200;">Put Some Content Here</h1>
- </body>
- </html>
Creating Our CSS file
This code will perform our animation effect of the background. You can also learn on how to use @keyframe rule. Copy the code bellow and save it as "style.css".- body{
- margin:0;
- padding:0;
- font-family:"arial",heletica,sans-serif;
- font-size:12px;
- background: #2980b9 url('http://static.tumblr.com/03fbbc566b081016810402488936fbae/pqpk3dn/MRSmlzpj3/tumblr_static_bg3.png') repeat 0 0;
- -webkit-animation: 10s linear 0s normal none infinite animate;
- -moz-animation: 10s linear 0s normal none infinite animate;
- -ms-animation: 10s linear 0s normal none infinite animate;
- -o-animation: 10s linear 0s normal none infinite animate;
- animation: 10s linear 0s normal none infinite animate;
- }
- @-webkit-keyframes animate {
- from {background-position:0 0;}
- to {background-position: 500px 0;}
- }
- @-moz-keyframes animate {
- from {background-position:0 0;}
- to {background-position: 500px 0;}
- }
- @-ms-keyframes animate {
- from {background-position:0 0;}
- to {background-position: 500px 0;}
- }
- @-o-keyframes animate {
- from {background-position:0 0;}
- to {background-position: 500px 0;}
- }
- @keyframes animate {
- from {background-position:0 0;}
- to {background-position: 500px 0;}
- }
Add new comment
- 717 views