tab選項卡功能我們也會經常接觸,本文我們主要介紹jQuery實作行動端Tab選項卡效果的實例。具有很好的參考價值。下面跟著小編一起來看吧,希望能幫助大家。
效果圖:
#程式碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>移动端Tab选项卡</title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(function() { $(".tab a").click(function() { $(this).addClass('curr').siblings().removeClass('curr'); var index = $(this).index(); number = index; $('.nav .content li').hide(); $('.nav .content li:eq(' + index + ')').show(); }); }) </script> <style> *{ margin: 0; padding: 0; } p, input, textarea, button, a { -webkit-tap-highlight-color: rgba(0,0,0,0); } ul, li, ol{ list-style: none; } a { color: #323232; outline-style: none; text-decoration: none; } .border-b { position: relative; } .border-b:after { top: auto; bottom: 0; } .border-t:before, .border-b:after { content: ''; position: absolute; left: 0; background: #ddd; right: 0; height: 1px; -webkit-transform: scaleY(0.5); transform: scaleY(0.5); -webkit-transform-origin: 0 0; transform-origin: 0 0; } .nav { background-color: #fff; text-align: center; } .nav .tab { width: 100%; position: relative; overflow: hidden; } .tab a { float: left; width: 49%; height: 2.56rem; line-height:2.56rem; display: inline-block; border-right: 1px solid #e1e1e1; } .tab a:last-child { border-right: 0; } .tab .curr { border-bottom: 2px solid #fc7831; color: #fc7831; } .content ul li { display: none; padding: 3%; width: 94%; } </style> </head> <body> <p class="nav"> <p class="tab border-b"> <a href="javascript:;" rel="external nofollow" rel="external nofollow" class="curr">商品介绍</a> <a href="javascript:;" rel="external nofollow" rel="external nofollow" >评价(99)</a> </p> <p class="content"> <ul> <li style="display: block">商品介绍</li> <li>评价</li> </ul> </p> </p> </body> </html>
大家學會了嗎?趕快動手嘗試。
相關推薦:
以上是jQuery行動端Tab選項卡效果實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!