jQuery鼠标进入离开css样式修改

  // 鼠标进入离开音量 提问 统计样式
  $('.vjs-volume-menu-button')
    .mouseover(function () {
      $('.tiwen').css({
        transition: 'all 0.4s',
        right: '240px'
      })
      $('.tongji').css({
        transition: 'all 0.4s',
        right: '350px'
      })
    })
    .mouseout(function () {
      $('.tiwen').css({
        right: '160px',
        transition: 'all 0.4s'
      })
      $('.tongji').css({
        transition: 'all 0.4s',
        right: '270px'
      })
    })
posted @ 2019-10-15 18:23  咱也不敢问  阅读(830)  评论(0编辑  收藏  举报