博客
关于我
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/

你可能感兴趣的文章
POJ 1080 Human Gene Functions(DP:LCS)
查看>>
Quant 开源项目教程
查看>>
POJ 1088 滑雪
查看>>
POJ 1095 Trees Made to Order
查看>>
POJ 1113 Wall(计算几何--凸包的周长)
查看>>
poj 1125Stockbroker Grapevine(最短路)
查看>>
Qualitor processVariavel.php 未授权命令注入漏洞复现(CVE-2023-47253)
查看>>
poj 1151 (未完成) 扫描线 线段树 离散化
查看>>
POJ 1151 / HDU 1542 Atlantis 线段树求矩形面积并
查看>>
poj 1163 数塔
查看>>
POJ 1177 Picture(线段树:扫描线求轮廓周长)
查看>>
Qualitor checkAcesso.php 任意文件上传漏洞复现(CVE-2024-44849)
查看>>
POJ 1182 食物链(并查集拆点)
查看>>
POJ 1185 炮兵阵地 (状态压缩DP)
查看>>
POJ 1195 Mobile phones
查看>>
POJ 1228 Grandpa's Estate (稳定凸包)
查看>>
poj 1236(强连通分量分解模板题)
查看>>
poj 1258 Agri-Net
查看>>
quagga 和 zebos
查看>>
poj 1286 Necklace of Beads
查看>>