div+css实现邮票中夜晚下雪场景动画效果代码
代码语言:html
所属分类:动画
代码描述:div+css实现邮票中夜晚下雪场景动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #fffaed;
}
body div.stamp {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 200px;
width: 345px;
background: #90c2d1;
}
body div.stamp::before {
content: "";
bottom: 0;
position: absolute;
}
body div.stamp::after {
content: "";
position: absolute;
top: 0;
left: 0;
height: 20px;
width: 20px;
border-radius: 50%;
background: #fffaed;
transform: translateY(-12px) translateX(12px);
box-sha.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0