简单的从左侧展开层,转场效果

Posted 伦巴舞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的从左侧展开层,转场效果相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>

<html>

<head lang="en">   

  <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">   

  <meta name="apple-mobile-web-app-capable" content="yes">    

<meta name="apple-mobile-web-app-status-bar-style" content="black">  

   <title></title>    

<script src="/jquery-1.9.1.js"></script>   

  <style>      

   html,body{ margin: 0px;  padding: 0px;}         .

new_show_box{             width: 100%;             height: 100vh;             position: fixed;             overflow-y: scroll;             -webkit-overflow-scrolling: touch;             top:0;             left:100%;             background-color: #c8c8c8 !important;             z-index: 99;         }

    </style>    

<script>       

  $(function(){         

    $(".gohitory").click(function () {           

      $(‘.new_show_box‘).animate({left:"0%"});          

   })          

   $(".gohitory1").click(function () {         

        $(‘.new_show_box‘).animate({left:"100%"},300);            

})   

      })

    </script>

</head>

<body>  

<a href="#" class="gohitory">展开</a>

 <div class="new_show_box">   

   <a href="#" class="gohitory1">缩进</a>  </div>

</body>

</html>

以上是关于简单的从左侧展开层,转场效果的主要内容,如果未能解决你的问题,请参考以下文章

iOS开发UI篇—核心动画(转场动画和组动画)

iOS开发UI篇—核心动画(转场动画和组动画)

CATransition(转场动画)

舒服了~玩转Android转场动画!

CATransition-转场动画

如何在展开的转场中找出哪个转场称为目的地?