移动端常见问题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');