梯形层叠选项卡切换效果

本文详细介绍了如何使用jQuery和CSS3创建一个可切换的UI组件,通过改变z-index和背景颜色实现在三个选项之间的切换,同时带有动画效果。
摘要由CSDN通过智能技术生成

效果图: 

实现代码 

<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>切换</title>

  <!-- 需要自行引入jquery -->

  <script type="text/javascript" src="{pboot:sitedomain}/skin/js/jquery-1.8.3.min.js">

</head>
<style>
  #leftabs {
    position: absolute;
    top: 18px;
    left: -32px;
  }

  #leftabs ul li {
    height: 60px;
    width: 10px;
    position: relative;
    line-height: 30px;
    padding: 30px 10px;
    background-color: #002FFD;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;

  }

  #leftabs ul li span {
    position: relative;
    z-index: 2;
  }

  #leftabs ul :nth-child(2) {
    position: absolute;
    top: 82px;
    z-index: 98;
  }

  #leftabs ul :nth-child(3) {
    position: absolute;
    top: 170px;
    z-index: 97;
  }

  #leftabs ul li.active {
    color: #002FFD;
    background-color: #fff;
    z-index: 99;
  }
</style>
<body>
  <div id="leftabs">
        <ul>
          <li class="active tabItem" onclick="changeZIndex(this)"><span>安<br />全</span></li>
          <li class="tabItem" onclick="changeZIndex(this)"><span>供<br />应</span></li>
          <li class="tabItem" onclick="changeZIndex(this)"><span>商<br />品</li>
        </ul>
      </div>
</body>

<script type="text/javascript">

    $(function () {
      $('.news-title a').first().addClass('current')
    })
    function changeZIndex(element) {
      $(".tabItem").css("z-index", "auto");
      $(".tabItem").css("background-color", "#002FFD");
      $(".tabItem").css("color", "#fff")
      $(element).css("z-index", "100"); 
      $(element).css("background-color", "#fff")
      $(element).css("color", "#002FFD")
    }
  </script>

  • 10
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值