分享web开发知识

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

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

css3 动画

发布时间:2023-09-06 01:52责任编辑:蔡小小关键词:动画
-moz- ????/* 火狐等使用Mozilla浏览器引擎的浏览器 */-webkit- ?/* Safari, 谷歌浏览器等使用Webkit引擎的浏览器 */-o- ??????/* Opera浏览器(早期) */-ms- ?????/* Internet Explorer (不一定) */ 



<div class="wrap"> ???<div class="spinner"> ?????<div class="double-bounce1"></div> ?????<div class="double-bounce2"></div> ???</div> ???<p>正在拼命加载中.....</p> ?</div>

  

.wrap { ?width: 100vw; ?height: 100vh; ?background-color: rgba(255,255,255,.8); ?border-radius: 2vw; ?position: fixed; ?left: 0; ?top: 0; ?z-index: 99999;}p { ?text-align: center; ?font-size: 24px;}.spinner { ?width: 50px; ?height: 50px; ?position: relative; ?margin: 65% auto; ?margin-bottom: 40px;}.double-bounce1, .double-bounce2 { ?width: 100%; ?height: 100%; ?border-radius: 50%; ?background-color: #facd2d; ?opacity: 0.6; ?position: absolute; ?top: 0; ?left: 0; ?-webkit-animation: bounce 2.0s infinite ease-in-out; ?animation: bounce 2.0s infinite ease-in-out;}.double-bounce2 { ?-webkit-animation-delay: -1.0s; ?animation-delay: -1.0s;}@keyframes bounce { ?0%, 100% { ???transform: scale(0.0); ???-webkit-transform: scale(0.0); ?} 50% { ???transform: scale(1.0); ???-webkit-transform: scale(1.0); ?}}

  

css3 动画

原文地址:https://www.cnblogs.com/1032473245jing/p/8984626.html

知识推荐

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