animation特效
在小程序中的使用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | < view class='test1'> < image src='/images/light.png'></ image > </ view > <!--星星的缩放效果--> < view class='test2'> < image src='/images/star.png'></ image > </ view > <!--转动效果--> < view class='test3'> < image src='/images/cross.png'></ image > </ view > <!--望远镜--> < view class='test4'> < image src='/images/telescope.png'></ image > </ view > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | .test 1 { width : 160 rpx; height : 160 rpx; background-color : #188eee ; } .test 1 image{ width : 160 rpx; height : 160 rpx; animation: light 1.5 s infinite; } @keyframes light{ from{ transform: rotate( 0 deg); } 80% ,to{ transform: rotate( 360 deg); } } /*星星特效:*/ .test 2 { width : 100 rpx; height : 100 rpx; } .test 2 image{ width : 100 rpx; height : 100 rpx; animation: star . 5 s linear infinite alternate } @keyframes star{ form{ transform: scale( 1 ); } to{ transform: scale(. 5 ); } } /*转动效果:*/ .test 3 { width : 100 rpx; height : 100 rpx; } .test 3 image{ width : 100 rpx; height : 100 rpx; animation: cross 1 s linear infinite; } @keyframes cross { from{ transform: rotate( 0 deg); } to{ transform: rotate( 360 deg); } } .test 4 { width : 500px ; height : 500px ; text-align : center } .test 4 image{ width : 96px ; height : 221px ; animation: eyes 3.2 s infinite; } @keyframes eyes{ from, 90% ,to{ transform: rotate( 80 deg) } 40% , 50% { transform: rotate( -60 deg) } } |
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 字符编码:从基础到乱码解决
· 提示词工程——AI应用必不可少的技术