彩虹效果
<!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">
<title>gradient</title>
<style>
.caihong {
width: 700px;
height: 300px;
background-color: cyan;
background-image: -webkit-radial-gradient(center bottom, white 30%, plum 30%, plum 35%, deepskyblue 35%, deepskyblue 40%, cyan 40%, cyan 45%, greenyellow 45%, greenyellow 50%, gold 50%, gold 55%, orange 55%, orange 60%, tomato 60%, tomato 65%, white 65%);
}
</style>
</head>
<body>
<div class="caihong"></div>
</body>
</html>
滑动解锁高亮
day3
<!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">
<title>模仿苹果手机滑动解锁效果</title>
<style>
* {
margin: 0;
padding: 0;
list-style: none;
}
body {
background-color: #333;
}
p {
width: 400px;
height: 100px;
font-size: 40px;
line-height: 100px;
text-align: center;
color: transparent;
background-color: pink;
background-image: -webkit-linear-gradient(left top, transparent 30%, #fff 38%, transparent 46%);
/* 过渡 */
transition: 1s;
/* 背景剪裁 */
-webkit-background-clip: text;
}
p:hover {
cursor: pointer;
background-position: 400px 0;
}
</style>
</head>
<body>
<p>向右滑动进行解锁</p>
</body>
</html>