border-bottom-right-radius - HTML CSS CSS Animatable Property

HTML CSS examples for CSS Animatable Property:border-bottom-right-radius

Introduction

The border radius of the bottom-right corner of the DIV element is animating from its initial value "0" to "80px", 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 CSS3 border-bottom-right-radius Property Animation</title>
  <style type="text/css">
.animated {<!--  w  w  w.j  a  va 2s .  co m-->
    width: 300px;
  padding: 40px 0;
    font: bold 50px sans-serif;
  text-align: center;
    background: #EEEEEE;
    border: 2px solid red;
    -webkit-animation: test 4s infinite; 
    animation: test 4s infinite;
}

@-webkit-keyframes test {
    50% {border-bottom-right-radius: 80px;}
}

@keyframes test {
    50% {border-bottom-right-radius: 80px;}
}
</style>
 </head>
 <body>
  <p> </p>
  <div class="animated">
   Box
  </div>
 </body>
</html>

Related Tutorials