Jquery Tab 选项卡切换 简单样式,一看就会。

  • Post author:
  • Post category:其他

效果图
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    * {
      margin: 0;
      padding: 0;
    }

    ul {
      width: 500px;
      height: 60px;
      display: flex;
      justify-content: space-around;
      margin: 20px auto;
    }

    li {
      list-style: none;
      width: 100px;
      line-height: 60px;
      text-align: center;
      background: darkcyan;
      cursor: pointer;
    }

    ul .active {
      background: red;
      color: white;
    }

    #con {
      width: 500px;
      height: 400px;
      background: palevioletred;
      margin: 0 auto;
    }

    #con>div {
      width: 500px;
      height: 400px;
      display: none;
    }

    #con>div:nth-child(1) {
      display: block;
      background: darkgoldenrod;
    }

    #con>div:nth-child(2) {
      background: darkgreen;
    }

    #con>div:nth-child(3) {
      background: darkorchid;
    }
  </style>
</head>

<body>
  <ul>
    <li class="active">首页</li>
    <li>美妆</li>
    <li>沙雕</li>
  </ul>
  <div id="con">
    <div>首页内容</div>
    <div>美妆内容</div>
    <div>沙雕内容</div>
  </div>
  <script src="jquery-3.4.1.min.js"></script>
  <script>
    $("li").click(function () {
      $(this).addClass("active").siblings().removeClass("active")
      var index = $(this).index();//当前点击的li下标
      $("#con>div").eq(index).show().siblings().hide();
    })

    // 
    // 写页面  // pc端页面 移动端页面  ui框架 bootstrap vant-ui element-ui
    // 写效果
    // ui框架的效果  
    //pc 轮播图 tab切换 一件置顶 放大镜  吸顶菜单  楼层滚动  
    // 数据交互 ajax form 

  </script>

</body>

</html>

版权声明:本文为m0_51095089原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。