jquery+css3实现列表toggle特效代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 jquery+css3实现列表toggle特效代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

jquery+css3实现列表toggle特效代码

HTML代码(index.html):

<!DOCTYPE html>
<html class=''>
<head>
    <title>jquery+css3实现列表toggle特效</title>
    <link rel='stylesheet' href='reset.css'>
    <style class="cp-pen-styles">* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Avenir Next';
  background: #000;
  color: white;
}

.menu {
  background: tomato;
  padding: 20px;
  position: absolute;
  z-index: 1;
  height: 55px;
  top: 0;
  right: 50px;
}

.list {
  -webkit-perspective: 100vw;
          perspective: 100vw;
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}
.list.hidden {
  pointer-events: none;
}
.list.hidden .item {
  -webkit-animation: disappear both;
          animation: disappear both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.list.reverse {
  -webkit-flex-flow: row-reverse wrap-reverse;
      -ms-flex-flow: row-reverse wrap-reverse;
          flex-flow: row-reverse wrap-reverse;
}

.item {
  font-size: 30px;
  padding: 20px;
  height: 100px;
  width: calc(100vw / 3);
  height: calc(100vh / 4);
  -webkit-animation: appear both;
          animation: appear both;
}

.item:nth-child(1) {
  background: #008a8a;
  -webkit-animation-delay: 0.03333s !important;
  -webkit-animation-duration: 0.1s !important;
}

.item:nth-child(2) {
  background: #009494;
  -webkit-animation-delay: 0.06667s !important;
  -webkit-animation-duration: 0.2s !important;
}

.item:nth-child(3) {
  background: #009f9f;
  -webkit-animation-delay: 0.1s !important;
  -webkit-animation-duration: 0.3s !important;
}

.item:nth-child(4) {
  background: #00a9a9;
  -webkit-animation-delay: 0.13333s !important;
  -webkit-animation-duration: 0.4s !important;
}

.item:nth-child(5) {
  background: #00b3b3;
  -webkit-animation-delay: 0.16667s !important;
  -webkit-animation-duration: 0.5s !important;
}

.item:nth-child(6) {
  background: #00bdbd;
  -webkit-animation-delay: 0.2s !important;
  -webkit-animation-duration: 0.6s !important;
}

.item:nth-child(7) {
  background: #00c7c7;
  -webkit-animation-delay: 0.23333s !important;
  -webkit-animation-duration: 0.7s !important;
}

.item:nth-child(8) {
  background: #00d2d2;
  -webkit-animation-delay: 0.26667s !important;
  -webkit-animation-duration: 0.8s !important;
}

.item:nth-child(9) {
  background: #00dcdc;
  -webkit-animation-delay: 0.3s !important;
  -webkit-animation-duration: 0.9s !important;
}

.item:nth-child(10) {
  background: #00e6e6;
  -webkit-animation-delay: 0.33333s !important;
  -webkit-animation-duration: 1s !important;
}

.item:nth-child(11) {
  background: #00f0f0;
  -webkit-animation-delay: 0.36667s !important;
  -webkit-animation-duration: 1.1s !important;
}

.item:nth-child(12) {
  background: #00fafa;
  -webkit-animation-delay: 0.4s !important;
  -webkit-animation-duration: 1.2s !important;
}

@-webkit-keyframes appear {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes appear {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes disappear {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(0deg) translateZ(-1500px);
            transform: scale(0.9) rotateX(0deg) translateZ(-1500px);
  }
}
@keyframes disappear {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(0deg) translateZ(-1500px);
            transform: scale(0.9) rotateX(0deg) translateZ(-1500px);
  }
}
</style>
</head>
<body>
    <div class='menu'>
        toggle visibility</div>
    <ul class='list reverse'>
        <li class='item'>Item 1</li>
        <li class='item'>Item 2</li>
        <li class='item'>Item 3</li>
        <li class='item'>Item 4</li>
        <li class='item'>Item 5</li>
        <li class='item'>Item 6</li>
        <li class='item'>Item 7</li>
        <li class='item'>Item 8</li>
        <li class='item'>Item 9</li>
        <li class='item'>Item 10</li>
        <li class='item'>Item 11</li>
        <li class='item'>Item 12</li>
    </ul>
    <script src='jquery.min.js'></script>
    <script>
        (function () {
            $(".menu").on("click", function () {
                return $(".list").toggleClass("hidden");
            });

        }).call(this);

    </script>
</body>
</html>
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
35.11 KB
Html 动画效果1
最新结算
股权转让协议意向书模板
类型: .docx 金额: CNY 2.23¥ 状态: 待结算 详细>
股权转让协议意向书模板
类型: .docx 金额: CNY 0.28¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 2.39¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 0.3¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章