H5中有一个<canvas>浮层,遮挡整在整个网页上面,像这样
<canvas>
<html>
请问有什么办法,让手指滑动下面的html,而不被<canvas>遮挡
H5中有一个<canvas>浮层,遮挡整在整个网页上面,像这样
<canvas>
<html>
请问有什么办法,让手指滑动下面的html,而不被<canvas>遮挡
canvas{
display:none;
}
canvas{
position:fixed;
left:200%;
}
//或者jQuery:
$('canvas').remove();
Demo