栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > Web开发 > JavaScript

CSS3+JavaScript实现翻页幻灯片效果

JavaScript 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

CSS3+JavaScript实现翻页幻灯片效果

先上效果图



  
    
    
    
      *{
 margin: 0;
 padding: 0;
      }
      #content{
 width: 500px;
 height: 300px;
 margin: 40px auto;
 position: relative;
 transform-style: preserve-3d;
      }
      #content>div{
 width: 100%;
 height: 100%;
 position: absolute;
 transform-origin: center bottom;
      }
      #content img{
 width: 100%;
 height: 100%;
      }
      #next{
 position: absolute;
 top:190px;
 left: calc(33% - 60px);
      }
      #prev{
 position: absolute;
 top: 190px;
 left: calc(68% + 30px);
      }
      @keyframes next{  //创建一个动画这是一个翻到下面的效果
 from{
   -wbelit-transform: perspective(1000px) rotateX(0deg); 
   opacity: 1; //初始透明为1
 }
 to{
   -webkit-transform: perspective(1000px) rotateX(-180deg); 
   opacity: 0; //结束透明为0
 }
      }
      @keyframes prev{ //创建一个由上边翻到上边的动画
 0%{
   -webkit-transform: perspective(1000px) rotateX(180deg); 
   opacity:0;    //初始为透明
 }
 57%
 {
   -webkit-transform: perspective(1000px) rotateX(-16deg); 
   opacity:1; //透明已经为1 了
 }
 66%
 {
   -webkit-transform: perspective(1000px) rotateX(14deg); 
 }
 74%
 {
   -webkit-transform: perspective(1000px) rotateX(-12deg); 
 }
 81%
 {
   -webkit-transform: perspective(1000px) rotateX(10deg); 
 }
 87%
 {
   -webkit-transform: perspective(1000px) rotateX(-8deg); 
 }
 92%
 {
   -webkit-transform: perspective(1000px) rotateX(6deg); 
 }
 96%
 {
   -webkit-transform: perspective(1000px) rotateX(-4deg); 
 }
 100%
 {
   -webkit-transform: perspective(1000px) rotateX(0deg); 
 }
                                         } .next{ animation: next 1s ease 1 normal 0s; transform: rotateX(-180deg); opacity: 0; } .prev{ animation: prev 1.2s ease 1 normal 0s; transform: rotateX(0deg); opacity: 1; }

以上所述是小编给大家介绍的CSS3+Javascript实现翻页幻灯片效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对考高分网网站的支持!

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/86741.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号