用jquery实现遮罩层
程序员文章站
2023-03-02 07:58:43
<p style=" display:none" id="yinying"></p> <script type="text/javascript"> function showUnitInfo() { var screenWidth = $(window).width();//当前窗口宽度 var screenHeight = $(window).height();//当前窗口高度 $("#yinying").css({"display":"","position": "fixed","background": "#000","z-index": "1001","-moz-opacity": "0.5","opacity":".50","filter": "alpha(opacity=50)","width":screenWidth,"height":screenHeight}); } </script>
jquery写的,使用前需要引用类库。
先写一个不不显示的p,当触发事件时,为这个p添加样式,高度=当前窗口高度,宽度=当前窗口宽度。
上一篇: Win10秋季创意者更新16281预览版更新内容汇总
下一篇: Vue-axios跨域请求详解理解