1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
| #check_msg_home
{
display: none;
}
#lable_msg_home > img
{
cursor: pointer;
position: absolute;
top: 250px;
left: 475px;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
-ms-transition: all 1s;
transition: all 1s;
}
#check_msg_home:checked + #lable_msg_home > img
{
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform: scale(10,10);
top: -1000px;
}
#clic_me
{
position: absolute;
top: 0px;
left: 820px;
display: block;
border: none;
-ms-animation: bounce 1.0s ease infinite;
-webkit-animation: bounce 1.0s ease infinite;
-o-animation: bounce 1.0s ease infinite;
-moz-animation: bounce 1.0s ease infinite;
animation: bounce 1.0s ease infinite;
-webkit-transform: scale(1,1);
}
@-webkit-keyframes bounce
{
from {top: 200px;}
50% {top: 210px;}
to {top: 200px;}
}
@-ms-keyframes bounce
{
from {top: 200px;}
50% {top: 210px;}
to {top: 200px;}
}
@-o-keyframes bounce
{
from {top: 200px;}
50% {top: 210px;}
to {top: 200px;}
}
@-moz-keyframes bounce
{
from {top: 200px;}
50% {top: 210px;}
to {top: 200px;}
}
@keyframes bounce
{
from {top: 200px;}
50% {top: 210px;}
to {top: 200px;}
}
#check_msg_home:checked + #clic_me
{
display: none;
} |