概述
html
<div class="container">
<svg viewBox="0 0 1000 300">
<symbol id="line-text">
<text text-anchor="middle" x="50%" y="50%" dy=".4em">
Microgoople
</text>
</symbol>
<use xlink:href="#line-text" class="text"></use>
<use xlink:href="#line-text" class="text"></use>
<use xlink:href="#line-text" class="text"></use>
<use xlink:href="#line-text" class="text"></use>
</svg>
</div>
css
* {
padding: 0;
margin: 0;
}
body {
background-color: rgb(41, 45, 62);
}
.container {
font-size: 120px;
font-weight: bold;
text-transform: uppercase;
}
svg {
position: absolute;
width: 100%;
height: 100%;
}
.text {
fill: none;
stroke-width: 5;
stroke-dasharray: 0 240;
stroke-dashoffset: 0;
}
.text:nth-child(4n + 1) {
stroke: rgb(39, 135, 238);
animation: text1 4s ease-in-out forwards;
}
.text:nth-child(4n + 2) {
stroke: rgb(47, 169, 92);
animation: text2 4s ease-in-out forwards;
}
.text:nth-child(4n + 3) {
stroke: rgb(249, 189, 56);
animation: text3 4s ease-in-out forwards;
}
.text:nth-child(4n + 4) {
stroke: rgb(235, 61, 50);
animation: text4 4s ease-in-out forwards;
}
@keyframes text1 {
100% {
stroke-dashoffset: 1000;
stroke-dasharray: 60 180;
}
}
@keyframes text2 {
100% {
stroke-dashoffset: 1060;
stroke-dasharray: 60 180;
}
}
@keyframes text3 {
100% {
stroke-dashoffset: 1120;
stroke-dasharray: 60 180;
}
}
@keyframes text4 {
100% {
stroke-dashoffset: 1180;
stroke-dasharray: 60 180;
}
}
最后
以上就是炙热翅膀为你收集整理的vue 炫酷文字的全部内容,希望文章能够帮你解决vue 炫酷文字所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复