纯CSS3怎么给文本添加背景图
时间:2021-09-06
来源:互联网
今天PHP爱好者给大家带来纯CSS3怎么给文本添加背景图的方法,在之前的文章《手把手教你使用CSS3实现按钮悬停闪烁动态特效》中,我们介绍使用CSS3给按钮添加动态效果,实现一个按钮悬停闪亮阴影动画效果的方法,感兴趣的朋友可以去了解一下~希望对大家有所帮助。
今天我们我们来看看使用CSS3怎么给文本添加背景图,让文字变得生动好看!在我们想要创建一个较大的文本标题,但不想使用普通又枯燥的颜色来修饰时,非常有用!
我们先来看看效果图:
下面我们来研究一下是怎么实现这个效果的:
首先是HTML部分,定义两个标题
<body>
<h1>Hello world!</h1>
<h3>Hello world!</h3>
</body>
然后开始定义css样式来进行修饰:
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
text-align: center;
min-height: 100vh;
font-size: 100px;
font-family:Arial, Helvetica, sans-serif;
}
最后就是给文字添加背景图片:
将文字原本的颜色设置为transparent透明,然后利用background-image属性给文字加背景图片
h1 {
color: transparent;
background-image: url("https://img.php.cn/upload/article/000/000/024/612360451cede816.jpg");
}
h3{
color: transparent;
background-image: url("https://img.php.cn/upload/article/000/000/024/6124c86e0808b298.jpg");
}
发现效果是这样的,不如人意。这是因为缺少了一个关键属性background-clip
。background-clip属性是一个CSS3新属性,要添加前缀来兼容其他浏览器
h1 {
color: transparent;
background-image: url("https://img.php.cn/upload/article/000/000/024/612360451cede816.jpg");
background-clip: text;
-webkit-background-clip: text;
}
h3{
color: transparent;
background-image: url("https://img.php.cn/upload/article/000/000/024/6124c86e0808b298.jpg");
background-clip: text;
-webkit-background-clip: text;
}
ok,大功告成!下面附上完整代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
text-align: center;
min-height: 100vh;
font-size: 100px;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: transparent;
background-image: url("https://img.php.cn/upload/article/000/000/024/612360451cede816.jpg");
background-clip: text;
-webkit-background-clip: text;
}
h3 {
color: transparent;
background-image: url("https://img.php.cn/upload/article/000/000/024/6124c86e0808b298.jpg");
background-clip: text;
-webkit-background-clip: text;
}
</style>
</head>
<body>
<h1>Hello world!</h1>
<h3>Hello world!</h3>
</body>
</html>
因为我们使用的是静态图片,所以是文本背景图效果也是静态的。如果使用动图会有动态效果:
h3 {
background-image: url("https://img.php.cn/upload/image/161/146/599/1629799857734746.gif"),
url("https://img.php.cn/upload/image/817/380/291/1629799861847258.gif");
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
以上就是纯CSS3怎么给文本添加背景图的详细内容,更多请关注php爱好者其它相关文章!
-
光与影33号远征队振奋击破如何获取_光与影33号远征队振奋击破获取指南 时间:2025-05-08
-
英雄没有闪法师火焰弓流派搭配指南_英雄没有闪法师火焰弓流派搭配推荐 时间:2025-05-08
-
503 Service Unavailable错误的原因及解决办法 时间:2025-05-08
-
503 Service Unavailable错误的原因及解决办法 时间:2025-05-08
-
原神爱可菲武器圣遗物搭配_原神爱可菲要如何进行阵容搭配 时间:2025-05-08
-
区块链十大正规平台排行及最新推荐指南 时间:2025-05-08
今日更新
-
ps设计师必备:安装第一步数值设置(共两步)
阅读:18
-
你值得了解的HTTP缓存机制(代码详解)
阅读:18
-
手把手教你使用CSS3实现按钮悬停闪烁动态特效
阅读:18
-
浅析Vue中入口缓存的问题(代码分享)
阅读:18
-
手把手教你使用css制作一个简单的心跳效果(代码详解)
阅读:18
-
手把手教你使用ps给图片添加立体效果(技巧分享)
阅读:18
-
PHP利用3个预定义变量来快速获取表单数据
阅读:18
-
PHP字符串学习之怎么知道字符串中包含了多少单词
阅读:18
-
深入了解PHP中反序列化字符逃逸的原理
阅读:18
-
浅析javascript中Reflect内置对象(代码详解)
阅读:18