動畫效果只有第一頁才出現(xiàn)了
#stControl1:checked~.stScroll #stPanel1 h2,
#stControl1:checked~.stScroll #stPanel2 h2,
#stControl1:checked~.stScroll #stPanel3 h2,
#stControl1:checked~.stScroll #stPanel4 h2,
#stControl1:checked~.stScroll #stPanel5 h2{
-webkit-animation:moveDo 1s ease-in-out 0.5s backwards;
? ? -moz-animation:moveDo 1s ease-in-out 0.5s backwards;
? ? -ms-animation:moveDo 1s ease-in-out 0.5s backwards;
? ? -o-animation:moveDo 1s ease-in-out 0.5s backwards;
? ? animation:moveDo 1s ease-in-out 0.5s backwards;
?
}
@-webkit-keyframes moveDo{
? ? 0%{
? ? ? ? -webkit-transform: translateY(-40px);
? ? ? ? opacity:0 ;
? ? }
? ? 100%{
? ? ? ? -webkit-transform:translateY(0px);
? ? ? ? opacity:1 ;
? ? }
? ?}
2016-04-30
前面的1234...