如果一个游戏上面加一个透明层,js能不能实现 点击透明层的任意点 而正常玩游戏


<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="jquery.min.js"></script> </head> <style> .div0{z-index: 0; 1124px;height: 600px;background: red;position: absolute;top:0;} .div1{z-index: 1; 1024px;height: 500px;background: #000;position: absolute;top:0;pointer-events:none;} </style> <body> <div class="div0"> hhshshshs </div> <div class="div1"> </div> </body> <script> $('.div1').click(function(){ alert("我是浮层") }) $('.div0').click(function(){ alert("我是底层") }) </script> </html>

css3的一个属性:

/*该层点击事件无效,传递到下层*/
    .pointer{pointer-events:none;}
原文地址:https://www.cnblogs.com/cynthia-wuqian/p/5364012.html