animate

1
body{ text-align:center; } #box{ display:block; margin:150px auto; color:#ffffff; -webkit-border-radius:10px; opacity:0.6; background:red; width:120px; height:75px; -webkit-transition: -webkit-transform 2s, opacity 2s, background 2s, width 2s, height 2s; } #box:hover{ -webkit-transform: rotate(360deg); opacity:1; background:#1ec7e6; width:450px; height:110px; }

Upload: saint-columban-college

Post on 09-Aug-2015

15 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Animate

body{

text-align:center;

}

#box{

display:block;

margin:150px auto;

color:#ffffff;

-webkit-border-radius:10px;

opacity:0.6;

background:red;

width:120px;

height:75px;

-webkit-transition: -webkit-transform 2s, opacity 2s, background 2s, width 2s, height 2s;

}

#box:hover{

-webkit-transform: rotate(360deg);

opacity:1;

background:#1ec7e6;

width:450px;

height:110px;

}