版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/w178191520/article/details/84297828
效果预览
在线演示按下右侧的“点击预览”按钮在当前页面预览,点击链接全屏预览。
https://codepen.io/zhang-ou/pen/LmjNgL
可交互视频教程
此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。
请用 chrome, safari, edge 打开观看。
源代码下载
本地下载请从 github 下载。
https://github.com/comehope/front-end-daily-challenges/tree/master/012-broken-text-effects
代码解读
定义 dom,只有一个元素,元素有一个 data-text 属性,属性值等于元素内的文本:
<div class="text" data-text="BREAK">BREAK</div>
居中显示:
html, body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
设置渐变背景色:
body {
background: linear-gradient(brown, sandybrown);
}
设置文本的字体字号:
.text {
font-size: 5em;
font-family: "arial black";
}
利用伪元素增加文字:
.text {
position: relative;
}
.text::before,
.text::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
color: lightyellow;
}
设置左侧文字的遮罩:
.text::before {
background-color: darkgreen;
clip-path: polygon(0 0, 60% 0, 30% 100%, 0 100%);
}
设置右侧文字的背景和遮罩:
.text::after {
background-color: darkblue;
clip-path: polygon(60% 0, 100% 0, 100% 100%, 30% 100%);
}
当鼠标划过时,遮罩的文字分别向两侧偏移:
.text::before,
.text::after {
transition: 0.2s;
}
.text:hover::before {
left: -0.15em;
}
.text:hover::after {
left: 0.15em;
}
隐藏辅助元素,包括原始文字和伪元素的背景色:
.text {
color: transparent;
}
.text::before {
/*background-color: darkgreen;*/
}
.text::after {
/*background-color: darkblue;*/
}
两侧文字增加歪斜效果:
.text:hover::before {
transform: rotate(-5deg);
}
.text:hover::after {
transform: rotate(5deg);
}
微调文字的高度:
.text:hover::before {
top: -0.05em;
}
.text:hover::after {
top: 0.05em;
}
大功告成!
知识点
- data-* https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/data-*
- clip-path https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path
- shape functions https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape#Syntax
- rotate() https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotate
- ::before https://developer.mozilla.org/en-US/docs/Web/CSS/::before
- ::after https://developer.mozilla.org/en-US/docs/Web/CSS/::after