前端 - 那些你不知道的炫酷导航交互效果_个人文章 - SegmentFault 思否
基于上次发布的 那些你不知道的炫酷按钮交互效果 反馈比较好,后续将继续收集那些炫酷的交互效果,希望可以给你的项目添砖加瓦,更上一层楼。那些你不知道的炫酷交互效果系列:那些你不知道的炫酷按钮交互效果那些
2021-10-23 13:24:38
101
关键是首先指定动画效果的CSS属性名称,然后在Js中改变这个属性
如果不使用Js触发,可以选择利用css的状态:hover,focus,active 来触发,也可以一开始就触发
下例为Js点击触发过渡Transitions效果,指定的属性名称是width
<!DOCTYPE html> <html> <head> <style> #aaa { width: 100px; height: 100px; background: blue; transition: width 2s; -moz-transition: width 2s; /* Firefox 4 */ -webkit-transition: width 2s; /* Safari and Chrome */ -o-transition: width 2s; /* Opera */ } </style> <script> function big() { document.getElementById("aaa").style.width = "300px"; } function small() { document.getElementById("aaa").style.width = "100px"; } </script> </head> <body> <button onclick="big()">Big</button> <button onclick="small()">Small</button> <div id="aaa"></div> </body> </html>
原创文章,欢迎转载,转载请注明出处!
31
2022-10
19
2022-10
15
2022-09
15
2022-09
14
2022-09
14
2022-09