我的mediaelement播放列表有问题,mediaelement可以自动调整高度值吗?
我使用了mediaelement播放器(版本2.20.1)和mediaelement播放列表(Link),我遇到了这个问题: 当我打开播放列表时,播放器的高度值无法自动调整,此问题将覆盖我的页脚... 的更新
解决了!
答案 0 :(得分:0)
我找到了修理它的地方:
使用js
jQuery(".mejs-hide-playlist, .mejs-show-playlist").click(function () {
if (jQuery(".mejs-playlist").is(":visible")) {
jQuery('#footer').css('margin-top', jQuery(".mejs-playlist").height() + 20);
}
else {
jQuery('#footer').css('margin-top', 0);
}
});
jQuery('#footer').css('margin-top', jQuery(".mejs-playlist").height() + 20);