欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

H5 CSS-pointer-events 给自己的网站加一个水印

程序员文章站 2024-03-25 11:28:40
...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .hxmarkwordcss{
            opacity: 0.25;
            font-weight: bold;
            text-align: center;
            z-index: 2147483647;
            pointer-events: none;
            display: block;
            width: 440px;
            height: 120px;
            position: fixed;
            top: 50%;
            left: 50%;
            margin-left: -2%;
            margin-top: -2%;
            transform: rotate(-40deg);
            -ms-transform: rotate(-40deg);
            -webkit-transform: rotate(-40deg);
        }
        .hxmarkwordtopcss {
          font-size: 24px;
          color: #FF9999;
        }
        .hxmarkwordtimecss {
          font-size: 20px;
          color: #FF9999;
        }
        .hxmarkwordbottomcss {
          font-size: 20px;
          color: #FF9999;
        }

    </style>
</head>
<body>
    <div id="#hxmarkworddiv" class="hxmarkwordcss">
        <div id="hxmarkwordtopdiv" class="hxmarkwordtopcss">来自某某某</div>
        <div id="hxmarkwordtimediv" class="hxmarkwordtimecss">2019-12-26 10:55:43</div>
        <div id="hxmarkwordbottomdiv" class="hxmarkwordbottomcss">内部资料严禁外传</div>
    </div>
</body>
</html>
// pointer-events: none
// 这里面主要用到了pointer-events这个css属性
// 阻止用户的点击动作产生任何效果
// 阻止缺省鼠标指针的显示
// 阻止CSS里的hover和active状态的变化触发事件
// 阻止JavaScript点击动作触发的事件
/*案例: 主要用于a块定位在b块上的时候 此时想在b块上做点击等事件的话是			不可以的,
		因为a在b块的上面, 想要实现这个效果就加一个pointer-events: none就可以了
*/
相关标签: H5 CSS