我正在为视频播放器创建自定义音量条。一切正常,但我试图在拖动控件时反转音量变化的方向。我认为这与我计算位置并将其转换为百分比的事实有关,它计算出我的控制div的顶部是0%而底部是100%。头寸和百分比的计算方法如下:
var position = y - volume.offset().top;
percentage = 100 * position / volume.height();
如果单击控制div的底部,则控制台.log(位置);读出100%。我希望它读出0%所以当点击底部时,音量下降,当点击顶部时它会上升(达到100%)。
继承代码
HTML
<video id="video">
... video sources
</video>
<div id="volumeBar"></div>
<div id="volume"></div>
CSS
#volumeBar {
position: relative;
height: 138px;
width: 102px;
background: url(/assets/vintage-vp/volume-container.png) no-repeat;
top: -131px;
left: 695px;
z-index: 2;
overflow: hidden;
}
#volume {
width: 36px;
height: 79px;
position: absolute;
background: url(/assets/vintage-vp/volume.jpg) no-repeat black;
top: 116px;
left: 735px;
z-index: 1;
}
的jQuery
var volumeDrag = false;
$('#volumeBar').on('mousedown', function(e) {
volumeDrag = true;
video[0].muted = false;
updateVolume(e.pageY);
});
$(document).on('mouseup', function(e) {
if(volumeDrag) {
volumeDrag = false;
updateVolume(e.pageY);
}
});
$(document).on('mousemove', function(e) {
if(volumeDrag) {
updateVolume(e.pageY);
}
});
var updateVolume = function(y, vol) {
var volume = $('#volumeBar');
var percentage;
//if only volume have specificed
//then direct update volume
if(vol) {
percentage = vol * 100;
}
else {
var position = y - volume.offset().top;
percentage = 100 * position / volume.height();
}
if(percentage > 100) {
percentage = 100;
}
if(percentage < 0) {
percentage = 0;
}
//update video volume
video[0].volume = percentage / 100;
//change sound icon based on volume
var roundPixels = Math.round((video[0].volume*10))*-79;
$('#volume').css({backgroundPosition: '0 ' +roundPixels+'px'});
我不想为此使用jQuery UI滑块。我觉得这只是一些简单的逻辑。谢谢!
答案 0 :(得分:4)
不会改变:
percentage = 100 * position / volume.height();
到
percentage = 100 - (100 * position / volume.height());
做到了吗?