基本信息
源码名称:css3 从左右两侧进入效果
源码大小:0.13M
文件格式:.zip
开发语言:CSS
更新时间:2018-05-20
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
<!DOCTYPE HTML> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="format-detection" content="telephone=no"><style type="text/css"> ul{list-style:none;clear:both;} li{ height:80px;} @keyframes bounceInLeft { from, 60%, 75%, 90%, to {animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);} 0% {opacity: 0;transform: translate3d(-3000px, 0, 0);} 60% {opacity: 1;transform: translate3d(25px, 0, 0);} 75% {transform: translate3d(-10px, 0, 0);} 90% {transform: translate3d(5px, 0, 0);} 100% {opacity: 1;transform: none;} } @keyframes bounceInRight { from, 60%, 75%, 90%, to {animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);} 0% {opacity: 0;transform: translate3d(3000px, 0, 0);} 60% {opacity: 1;transform: translate3d(-25px, 0, 0);} 75% {transform: translate3d(10px, 0, 0);} 90% {transform: translate3d(-5px, 0, 0);} 100% {opacity: 1;transform: none;} } .page5-tu1,.page5-tu2,.page5-tu3,.page5-tu4{ position: absolute; width: REM(480); height: REM(206); leftxx: 50%; margin-left: REM(-240); opacity: 0; } .page5-tu1{ bottom: REM(778); animation: bounceInLeft 0.5s 0.25s linear forwards; } .page5-tu2{ bottom: REM(548); animation: bounceInLeft 0.7s 0.45s linear forwards; } .page5-tu3{ bottom: REM(314); animation: bounceInRight 0.9s 0.65s linear forwards; } .page5-tu4{ bottom: REM(81); animation: bounceInRight 1.1s 0.85s linear forwards; } </style> </head><body> <ul> <li><img class="page5-tu1" src="./images/p5_tu1.png" name="travel1"></li> <li><img class="page5-tu2" src="./images/p5_tu1.png" name="travel1"></li> <li><img class="page5-tu3" src="./images/p5_tu3.png" name="travel3"></li> <li><img class="page5-tu4" src="./images/p5_tu3.png" name="travel3"></li> </ul> </body></html>