博客
关于我
css3动画-animation
阅读量:488 次
发布时间:2019-03-07

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

CSS3动画实例与技巧

在前端开发中,CSS3动画不仅能够提升用户体验,还能为界面增添趣味性。本文将分享多个实用的CSS动画案例,包括loading动画、骨架屏、纸牌翻转、滚动列表、开始游戏动画以及进度条等。

Loading动画

在数据加载过程中,显示loading动画可以提升用户体验。通过CSS3的animation属性,可以轻松实现不同类型的loading效果。

.loading-1 {    width: 35px;    height: 35px;    position: relative;}@-webkit-keyframes loading-1 {    0% {        transform: rotate(0);    }    50% {        transform: rotate(180deg);    }    100% {        transform: rotate(360deg);    }}.loading-1 i {    display: block;    width: 100%;    height: 100%;    border-radius: 50%;    background: linear-gradient(transparent 0, transparent 70%, #333 30%, #333 100%);    -webkit-animation: loading-1 0.6s linear 0s infinite;}

骨架屏

骨架屏是一种优雅的加载效果,可以在数据完全加载前显示页面布局,减少白屏时间。

.skeleton {    height: 6rem;    box-sizing: border-box;    position: relative;    animation-duration: 1s;    animation-fill-mode: forwards;    animation-iteration-count: infinite;    animation-name: placeHolderShimmer;    animation-timing-function: linear;    background: linear-gradient(to right, #eeeeee, #dddddd 10%, #eeeeee 30%);    background-size: 400% 400%;}

纸牌翻转

通过CSS3的transformanimation,可以实现纸牌翻转的抽奖效果。

.viewport-flip {    -webkit-perspective: 1000;    perspective: 1000;    position: absolute;}.flip {    backface-visibility: hidden;    transform: translateX(0);}.flip.out {    transform: rotateY(-90deg) scale(0.9);    animation-name: flipouttoleft;    animation-duration: 175ms;}.flip.in {    animation-name: flipintoright;    animation-duration: 225ms;}

滚动列表

通过CSS3动画,可以实现无限滚动的效果。

.roll ul {    list-style: none;    animation: rollList 5s linear infinite;}

开始游戏动画

使用CSS3动画可以实现流畅的开始游戏效果,避免依赖Flash技术。

.start:hover span {    animation: linear 1.6s infinite;}

进度条

通过CSS3动画,可以轻松实现多种进度条效果,支持延迟和暂停功能。

div {    height: 10px;    border: 1px solid;    background: linear-gradient(rgb(0, 255, 157), #0ff);    background-repeat: no-repeat;    background-size: 0;    animation: move 2s linear forwards;}

这些CSS3动画案例可以根据项目需求进行定制和扩展,帮助开发者提升用户体验。

转载地址:http://qjncz.baihongyu.com/

你可能感兴趣的文章
MySQL-连接
查看>>
mysql-递归查询(二)
查看>>
MySQL5.1安装
查看>>
mysql5.5和5.6版本间的坑
查看>>
mysql5.5最简安装教程
查看>>
mysql5.6 TIME,DATETIME,TIMESTAMP
查看>>
mysql5.6.21重置数据库的root密码
查看>>
Mysql5.6主从复制-基于binlog
查看>>
MySQL5.6忘记root密码(win平台)
查看>>
MySQL5.6的Linux安装shell脚本之二进制安装(一)
查看>>
MySQL5.6的zip包安装教程
查看>>
mysql5.7 for windows_MySQL 5.7 for Windows 解压缩版配置安装
查看>>
Webpack 基本环境搭建
查看>>
mysql5.7 安装版 表不能输入汉字解决方案
查看>>
MySQL5.7.18主从复制搭建(一主一从)
查看>>
MySQL5.7.19-win64安装启动
查看>>
mysql5.7.19安装图解_mysql5.7.19 winx64解压缩版安装配置教程
查看>>
MySQL5.7.37windows解压版的安装使用
查看>>
mysql5.7免费下载地址
查看>>
mysql5.7命令总结
查看>>