分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

css3实现流星坠落效果

发布时间:2023-09-06 01:28责任编辑:彭小芳关键词:暂无标签

html代码

<div class="star"></div> ?????<div class="star pink"></div> ?????<div class="star blue"></div>

css代码

.star { ???display: block; ???width: 5px; ???height: 5px; ???border-radius: 50%; ???background: #FFF; ???top: 100px; ???left: 500px; ???position: relative; ???transform-origin: 100% 0; ???animation: star-ani 4s linear infinite; ???-webkit-animation:star-ani 5s linear infinite; ???box-shadow: 0 0 5px 5px rgba(255, 255, 255, .3); ???opacity: 0; ???z-index: 2;}.star:after { ???content: ‘‘; ???display: block; ???top: 0px; ???left: 4px; ???border: 0px solid #fff; ???border-width: 0px 90px 2px 90px; ???border-color: transparent transparent transparent rgba(255, 255, 255, .3); ???transform: rotate(-45deg) translate3d(1px, 3px, 0); ???box-shadow: 0 0 1px 0 rgba(255, 255, 255, .1); ???transform-origin: 0% 100%; ???animation: shooting-ani 3s infinite ease-out;}.pink { ???top: 100px; ???left: 800px; ???background: #fff; ???animation-delay: 3s; ???-webkit-animation-delay: 3s; ???-moz-animation-delay: 3s;}.pink:after { ???border-color: transparent transparent transparent #fff; ???animation-delay: 3s; ???-webkit-animation-delay: 3s; ???-moz-animation-delay: 3s;}.blue { ???top: 120px; ???left: 1200px; ???background: fff; ???animation-delay: 7s; ???-webkit-animation-delay: 7s; ???-moz-animation-delay: 7s;}.blue:after { ????border-color: transparent transparent transparent fff; ???-webkit-animation-delay: 7s; ???-moz-animation-delay: 7s; ???animation-delay: 7s;} ?@keyframes star-ani { ???0% { ???????opacity: 0; ???????transform: scale(0) translate3d(0, 0, 0); ???} ???20%{ ???????opacity: 0.8; ???????transform: scale(0.2) translate3d(-100px, 100px, 0); ???} ???40% { ???????opacity: 0.8; ???????transform: scale(0.4) translate3d(-200px, 200px, 0); ???} ???60% { ???????opacity: 0.8; ???????transform: scale(0.6) translate3d(-300px, 300px, 0); ???} ???80% { ???????opacity: 1; ???????transform: scale(1) translate3d(-350px, 350px, 0); ???} ???100% { ???????opacity: 1; ???????transform: scale(1.2) translate3d(-400px, 380px, 0); ???}}

效果图

css3实现流星坠落效果

原文地址:http://www.cnblogs.com/Mrrabbit/p/7943803.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved