css新年快乐文字动画效果代码
代码语言:html
所属分类:动画
代码描述:css新年快乐文字动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
justify-content: center;
align-items: center;
display: flex;
background-color: #000;
height: 100vh;
}
.newyear {
position: relative;
}
.numbers {
position: relative;
display: inline-flex;
font-size:100px;
font-weight: bold;
font-family: Verdana, sans-serif;
letter-spacing:20px;
}
.first {
color: #00509d;
text-shadow: 2px 2px 0 #ffd500;
}
.first:before {
content:"";
position: absolute;
background-color: #00509d;
height:15px;
width:3px;
left:35px;
top:12px;
}
.first:after {
content:"";
position: absolute;
background-color: #00509d;
width:20px;
height:10px;
border-radius: 0 0 30px 30px;
left:27px;
top:2px;
}
.second {
color: #fdc500;
text-shadow: 2px 2px 0 #70e000;
}
.second:before {
content:"";
position: absolute;
background-color: #fdc500;
height:15px;
width:3px;
left:125px;
top:12px;
}
.second:after {
content:"";
position.........完整代码请登录后点击上方下载按钮下载查看
网友评论0