移动端常见问题2

1.video宽度为100%,高度为自动时,计算video的高度:document.getElementById('video1').offsetHeight;

2.不透明度

background-color: rgba(0, 0, 0, 0.2);
background-color: black;
opacity: 0.2;
filter: Alpha(opacity=20);

3.阻止页面滚动和解除页面滚动:

$('body').on('touchmove',function(ev) {
    ev.preventDefault();
});
$('body').off('touchmove');
posted @ 2017-07-28 16:37  世界,太精彩  阅读(105)  评论(0编辑  收藏  举报