hoyixi
2019-07-02 11:19:26 +08:00
没验证手机发不了 url 链接,所以直接发代码 ,保存为 html 浏览器试试看。(下面代码里背景图有个 url,自己把冒号和点替换成英文字符)
-------------------------------------------------------------
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>你好骚啊</title>
<style>
.container {
height: 100vh;
width: 100%;
display: flex;
align-items:center;
justify-content:center;
}
.hello {
background-image: url('http 冒号 //t 点 im/hbpu');
background-size: 100% 100%;
background-position: center;
font-size: 250px;
text-align: center;
line-height: 200%;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<div class="container">
<div class="hello">
你好骚啊
</div>
</div>
</body>
</html>