web前端学习—小心心飘落
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>love</title>
<style>
.snowfall-flakes{
position:relative;
margin:20px auto;
width:200px;
height:300px;
}
.snowfall-flakes::before{
content: ' ';
position:absolute;
top:0;
left:0;
width:10px;
height:16px;
background-color:#FF0000;
border-radius:50px 50px 0 0;
transform:rotate(-45deg);
}
.snowfall-flakes::after{
content: ' ';
position:absolute;
top:0;
left:4.3px;
width:10px;
height:16px;
background-color:#FF0000;
border-radius:50px 50px 0 0;
transform:rotate(45deg);
}
</style>
</head>
<body>
<div class="snowfall-flakes">
<!-- <div class="left">
1
</div>
<div class="right">
2
</div> -->
</div>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/JQuery-Snowfall/1.7.4/snowfall.jquery.min.js"></script>
<script>
$(document).snowfall({flakeCount :100, maxSpeed :10});
</script>
</body>
</html>