1. 用js怎樣做手機端觸屏滾動選擇效果啊
只要有滾動條,手機端瀏覽器會自動適應滾動
2. 移動端圖片輪播,可以自己輪播也可以用滑動輪播。默認輪播是從右至左,手滑時根據方向輪播。
bootstrap是封裝好的框架,需要某些功能只需調用相應的組件就可以,但有些還是沒加入,比如幻燈輪播觸屏左右滑動手勢就不支持,大家用的設備基本是觸屏的了,能用滑動交互在小屏幕上體驗會更好,那麼如何實現呢?一個比較簡單的方法是增加一個滑動手勢js插件:hammer.js,網上有很多cdn調用地址,像//cdn.bootcss.com/hammer.js/2.0.8/hammer.min.js,我們在head中載入一下然後再通過javascript把swipe功能調用出來就可以了。下面是幻燈片的原始html代碼
<divdata-ride="carousel"class="carouselslide"id="carousel-example-generic">
<olclass="carousel-indicators">
<liclass=""data-slide-to="0"data-target="#carousel-example-generic"></li>
<lidata-slide-to="1"data-target="#carousel-example-generic"class="active"></li>
<lidata-slide-to="2"data-target="#carousel-example-generic"class=""></li>
</ol>
<divrole="listbox"class="carousel-inner">
<divclass="item">
<imgalt="Firstslide"src="http://ibootstrap-file.b0.upaiyun.com/lorempixel.com/1600/500/sports/1/default.jpg"data-holder-rendered="true">
</div>
<divclass="itemactive">
<imgalt="Secondslide[1140x500]"src="http://ibootstrap-file.b0.upaiyun.com/lorempixel.com/1600/500/sports/2/default.jpg"data-holder-rendered="true">
</div>
<divclass="item">
<imgalt="Thirdslide[1140x500]"src="http://ibootstrap-file.b0.upaiyun.com/lorempixel.com/1600/500/sports/3/default.jpg"data-holder-rendered="true">
</div>
</div>
<adata-slide="prev"role="button"href="#carousel-example-generic"class="leftcarousel-control">
<spanaria-hidden="true"class="glyphiconglyphicon-chevron-left"></span>
<spanclass="sr-only">Previous</span>
</a>
<adata-slide="next"role="button"href="#carousel-example-generic"class="rightcarousel-control">
<spanaria-hidden="true"class="glyphiconglyphicon-chevron-right"></span>
<spanclass="sr-only">Next</span>
</a>
</div>
關鍵的步驟來了,我們需要寫一個javascript命令調用hammer.js中的swipe功能
<script>
$(function(){
varmyElement=document.getElementById('carousel-example-generic')
varhm=newHammer(myElement);
hm.on("swipeleft",function(){
$('#carousel-example-generic').carousel('next')
})
hm.on("swiperight",function(){
$('#carousel-example-generic').carousel('prev')
})
})
</script>
div的id一定要對應,上面是carousel-example-generic,javascript中也要這個,否則不能實現。
需要注意的是,jquery版本最好是1.9版本的jquery-1.9.1.min.js,否則可能在電腦上可以實現手勢滑動,而在手機上無法觸摸滑動
javascript命令這個是關鍵,不會寫不會改就不好玩了。做個標記,方便日後查詢