ajhongshaorou 2019-06-30
发布iPhone XR的时候 各种心动 去官网看了一遍又一遍。
(贫穷使我节省。。。。。。。。。。)
闲着无聊发现 里面的介绍很用大篇幅的有背景文字来介绍。Like this:
看着挺酷炫的还不错 就看了下实现方式。
还挺简单的。
附上demo
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>text-fill-color css web前端开发</title> <style> html{background: #000;} .text1{ margin:60px auto; font-size: 120px; text-align: center; font-weight: bold; background:-webkit-gradient(linear,30% 20%,80% 80%,from(#088df3),to(#6a38ec)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; } .text2{ margin:60px auto; font-size: 120px; text-align: center; font-weight: bold; background: url(https://www.apple.com/v/iphone-xs/a/images/overview/copy_texture_1_medium.jpg) repeat center center; background-size: 100% 100%;//背景的铺排方式修改下效果更明显 -webkit-background-clip:text; -webkit-text-fill-color:transparent; } .record{ color: #737373;text-align: center;font-size: 24px;position: fixed;bottom: 0%;left: 0;width: 100%;padding: 20px 0; } </style> </head> <body> <div class="text1">文字颜色渐变</div> <div class="text2">文字遮罩照片</div> <p class="record">by Jerry yu </p> </body> </html>
mark一下 仅供参考 欢迎更正补充 end