// 鼠标进入离开音量 提问 统计样式
$('.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'
})
})