zoukankan      html  css  js  c++  java
  • 利用jquery.touchSwipe.js实现的移动滑屏效果。

    利用jquery.touchSwipe.js实现的移动滑屏效果。

    亲测:兼容ie8及各种浏览器

    <script type="text/javascript" src="http://cdn.bootcss.com/jquery/3.1.1/jquery.js"></script>

    <script type="text/javascript" src="js/jquery.touchSwipe.min.js"></script> 点击下载

    		*{
    			margin: 0;
    			padding: 0;
    		}
    		html,body{
    			 100%;
    			height: 100%;
    			overflow: hidden;
    		}
    		.container{
    			 100%;
    			height: 100%;
    			position: absolute;
    			left: 0;
    			top: 0%;
    		}
    		.container .page{
    			height: 100%;
    			position: relative;
    		}
    		.container .page0{
    			background-color: blue;
    		}
    		.container .page1{
    			background-color: pink;
    		}
    		.container .page2{
    			background-color: yellow;
    		}
    		.container .page3{
    			background-color: green;
    		}
    		.container .page4{
    			background-color: tomato;
    		}
            .xiangxiatishi{
    			position: fixed;
    			bottom: 20px;
    			left: 50%;
    			-webkit-transform:translateX(-50%);
    			-webkit-animation:dong 1s linear 0s infinite alternate;
    		}
    
    		@-webkit-keyframes dong{
    			from{
    				bottom:20px;
    			}
    			to{
    				bottom: 60px;
    			}
    		}
    

      

    <body onmousewheel="return false;">
    	<div class="container">
    		<div class="page page0 cur"><h1>你好,我是0号屏幕</h1>
    		</div>
    
    		<div class="page page1">
    			<h1>你好,我是1号屏幕</h1>
    			<!-- <img class="no1" src="img/1.png" />
    			<img class="no2" src="img/2.png" /> -->
    		</div>
    		<div class="page page2"><h1>你好,我是2号屏幕</h1></div>
    		<div class="page page3"><h1>你好,我是3号屏幕</h1></div>
    		<div class="page page4"><h1>你好,我是4号屏幕</h1></div>
    	</div>
    
    	<img  class="xiangxiatishi" src="img/prompt.png" alt="向下来一下~"/>
    
    </body>
    

      

    $(document).ready(
    			function() {
    				var nowpage = 0;
    				//给最大的盒子增加事件监听
    				$(".container").swipe(
    					{
    						swipe:function(event, direction, distance, duration, fingerCount) {
    							 if(direction == "up"){
    							 	nowpage = nowpage + 1;
    							 }else if(direction == "down"){
    							 	nowpage = nowpage - 1;
    							 }
    
    							 if(nowpage > 4){
    							 	nowpage = 4;
    							 }
    
    							 if(nowpage < 0){
    							 	nowpage = 0;
    							 }
    
    							$(".container").animate({"top":nowpage * -100 + "%"},400);
    
    							$(".page").eq(nowpage).addClass("cur").siblings().removeClass("cur");
    						}
    					}
    				);
    			}
    		);
    

      

  • 相关阅读:
    【转】Asp.net页面的生命周期
    指定.net的httprequest http协议版本为1.0
    查看oracle中被锁的对象(表...)
    网友整理的Flex开源项目
    oracle中用profile限定用户资源
    (转)让你受益终身的10个Word实用技巧
    磁盘阵列卡
    Nmap扫描器的使用
    最简单的数据库连接,asp连接access数据库
    网络经典命令行
  • 原文地址:https://www.cnblogs.com/webSong/p/6387551.html
Copyright © 2011-2022 走看看