播放条position为absolute,然后top大小也定了,在我的电脑上显示是在底部,可是在别的电脑上不是,求问大神怎么让播放条自动适应不同电脑,显示在底部?QAQ
那就计算看看
$(window).ready(function () {
var winHeight = $(window).height();
var 播放条Height=$('播放条').height();
播放条top=winHeight-播放条Height
});
$(window).resize(function () {
var winHeight = $(window).height();
var 播放条Height=$('播放条').height();
播放条top=winHeight-播放条Height
});
会不会是浏览器的原因,有些浏览器对样式的支持情况是不一样的。
position用fixed 试试
web还是安卓?或者。。
使用定位position,audio是盒子模型