js实现一个页面打水印效果代码

代码语言:html

所属分类:布局界面

代码描述:js实现一个页面打水印效果代码

代码标签: js 页面 水印

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
	<style>
		body {
			overflow-x:hidden;
		}
		.table-sy {
            width: 100%;
            height: 100%;
            position: absolute;
            pointer-events: none; /*主要是这个属性*/
            color:#d2d6d9;
            z-index: 99999999999;
        }
        .table-sy > div {
            /*width: 300px;*/
            /*height: 150px;*/
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(-40deg);
            float: left;
        }
		.content {
			width: 100%;
			height: 20vh;
			text-align: center;
			line-height: 20vh;
			cursor: pointer;
		}
	</style>
</head>
<body>
<div id="sy" class="table-sy"></div>
<div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="alert(i++)">页面内容</div>
	<div class="content" onclick="al.........完整代码请登录后点击上方下载按钮下载查看

网友评论0