bottom - HTML CSS CSS Animatable Property

HTML CSS examples for CSS Animatable Property:bottom

Introduction

In the following code the bottom position of the div element is animating from its initial value "0" to "300px", and back to the initial value "0" again up to infinite times.

-webkit- prefix is for Chrome, Safari, Opera.

-moz- prefix is for Firefox.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head>
  <title>Example of CSS bottom Property Animation</title>
  <style type="text/css">
.container{<!--from   ww w .  j a  v  a  2 s. c o  m-->
  height: 450px;
  position: relative;
}
.animated {
  width: 150px;
  padding: 40px 0;
  position: absolute;
  bottom: 0;
  font: bold 50px sans-serif;
  text-align: center;
    background: #EEEEEE;
    border: 1px solid red;
    -webkit-animation: test 4s infinite; 
    animation: test 4s infinite;
}

@-webkit-keyframes test {
    50% {bottom: 300px;}
}

@keyframes test {
    50% {bottom: 300px;}
}
</style>
 </head>
 <body>

  <p> </p>
  <div class="container">
   <div class="animated">
    Box
   </div>
  </div>
 </body>
</html>

Related Tutorials