博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2.HTML+CSS制作一闪一闪亮晶晶的星星(stars)
阅读量:4980 次
发布时间:2019-06-12

本文共 2467 字,大约阅读时间需要 8 分钟。

效果地址:

HTML code:

  
  
  
  
  
  
  
  
  
  

CSS code:

html,body{
  margin: 0;  padding: 0;}body{
height: 100vh; background-color: black;}.stars{
position: relative; width: 100%; height: 100%;}.stars span{
display: inline-block; position: absolute; width: 5px; height: 5px; background-color: white; transform: rotate(45deg); /* 使星星模糊一点 */ opacity: 0.2; /* 动画名称 动画时间 速度 开始时间 次数 */ animation: blinking 1s linear var(--d) infinite;}/* blinking : 闪烁 */@keyframes blinking{
0%,100%{ opacity: 0.2; } 50%{ /* 星星大小放大 1.5倍 ,旋转45度成菱形 */ transform: scale(1.5) rotate(45deg); opacity: 1; }}.stars span:nth-child(1){
top: 10%; left: 10%; --d: 10s;}.stars span:nth-child(2){
top: 20%; left: 20%; --d: 6s;}.stars span:nth-child(3){
top: 30%; left: 30%; --d: 5s;}.stars span:nth-child(4){
top: 10%; margin-left: 40%; --d: 4s;}.stars span:nth-child(5){
top: 40%; left: 60%; --d: 7s;}.stars span:nth-child(6){
top: 30%; left: 80%; --d: 9s;}.stars span:nth-child(7){
top: 40%; left: 20%; --d: 8s;}.stars span:nth-child(8){
top: 50%; left: 40%; --d: 15s;}.stars span:nth-child(9){
top: 60%; left: 70%; --d: 14s;}.stars span:nth-child(10){
top: 80%; left: 50%; --d: 11s;}.stars span:nth-child(11){
top: 75%; left: 23%; --d: 20s;}.stars span:nth-child(12){
top: 55%; left: 4%; --d: 24s;}.stars span:nth-child(13){
top: 36%; left: 26%; --d: 8s;}.stars span:nth-child(14){
top: 93%; left: 18%; --d: 3s;}.stars span:nth-child(15){
top: 58%; left: 68%; --d: 2.6s;}.stars span:nth-child(16){
top: 64%; left: 86%; --d: 1.5s;}.stars span:nth-child(17){
top: 6%; left: 78%; --d: 3.5s;}.stars span:nth-child(18){
top: 13%; left: 58%; --d: 6s;}.stars span:nth-child(19){
top: 50%; left: 50%; --d: 8s;}.stars span:nth-child(20){
top: 88%; left: 88%; --d: 7s;}

 

posted on
2019-03-01 13:53 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/FlyingLiao/p/10456006.html

你可能感兴趣的文章
实验10: RIP
查看>>
前端开发 - CSS - 总结
查看>>
IntelliJ IDEA14如何配置tomcat
查看>>
网络数据包最大长度 MTU 分片 转发https://blog.csdn.net/singular2611/article/details/52513406...
查看>>
16.0 Auth0注册与设置
查看>>
18.1利用socket .io 实现 editor间代码的同步
查看>>
servlet 详解(二)-继承体系
查看>>
hadoop2的思想架构
查看>>
Notes about WindowPadX
查看>>
团队作业选题及需求分析成绩汇总
查看>>
P1772 [ZJOI2006]物流运输
查看>>
ArcGIS Server 10.1发布要素服务(FeatureLayer server)时遇到的数据库注册问题
查看>>
Java编程思想重点笔记(Java开发必看)
查看>>
周末总结1
查看>>
'mysql' 不是内部或外部命令,也不是可运行的程序或批处理文件的解决办法
查看>>
hibernate qbc查询
查看>>
sql跨数据库转移
查看>>
vim使用技巧
查看>>
Android--消除“Permission is only granted to system apps”错误
查看>>
linux 压缩解压打包工具大集合
查看>>