animation之 左侧出入的弹出框

HTML如下: 

    <div class="toolbar">
    收起
    </div>
    <div class="infolist">
        <ul>
            <li>
                <label>操作系统:</label>
                <span>未知</span>
            </li>
            <li>
                <label>开发语言:</label>
                <span>未知</span>
            </li>
            <li>
                <label>CDN:</label>
                <span>未知</span>
            </li>
            <li>
                <label>WAF:</label>
                <span>未知</span>
            </li>
        </ul>
    </div> 

CSS代码如下: 

  .infolist{
      position: absolute;
      left: 24px;
      bottom: 20px;
      width: 520px;
      height: 360px;
      background-color: #d8e1e4;
      border-radius: 4px;
      padding: 20px;
      padding-bottom: 0;
      box-sizing: border-box;
      font-size: 12px;
      color: #333;
      font-weight: 700;
      opacity: 0.5;
  }
  .infolist label{
    color: #333;
    font-weight: 700;
  }
  .toolbar{
    padding: 20px 2px;
    position: fixed;
    left: 0px;
    bottom: 150px;
    width: 20px;
    height: 100px;
    background-color: #d8e1e4;
    border-radius: 4px;
  } 

 

JS代码如下: 

    // 给查看按钮绑定点击事件
  $('.toolbar').on('click',function(){
    if($(this).text()=="查看"){
      $('.infolist').animate({
          'left':'24px'
      },800);
      $(this).text('收起')
    }else{
      $('.infolist').animate({
          'left':'-1000px'
      },800);
      $(this).text('查看')
    }

    })

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值