這篇文章帶給大家的內容是關於CSS實現選單按鈕動畫的程式碼範例,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
要寫一個下拉式選單點擊按鈕選單入口就是是點擊一個圖示按鈕之前都是隨便用個圖片代替今天突然想用CSS寫個效果主要參考澎湃移動端右上角的按鈕
效果:
#HTML
//vue 中通过点击事件改变class <div> <div></div> <div></div> <div></div> </div>CSS
<!--按钮容器 START--> .burger { cursor: pointer; display: inline-block; margin: 7px 6px 0 0; outline: none; } <!--按钮容器 END--> <!--三条横线 通过rotate3d实现旋转 START--> .burger p { width: 30px; height: 4px; margin-bottom: 6px; background-color: rgb(51, 51, 51); transform: rotate3d(0, 0, 0, 0); } <!--三条横线 END--> .burger.transform p { background-color: transparent; } .burger.transform p:first-of-type { top: 10px; transform: rotate3d(0, 0, 1, 45deg) } .burger.transform p:last-of-type { bottom: 10px; transform: rotate3d(0, 0, 1, -45deg) } <!--点击后第一个和第三个横线的效果 START--> .burger.transform p:first-of-type, .burger.transform p:last-of-type { transition: transform .4s .3s ease, background-color 250ms ease-in; background: #00c1de; } <!--点击后第一个和第三个横线的效果 END--> <!--取消点击后恢复动画 START--> .burger p:first-of-type, .burger p:last-of-type { transition: transform .3s ease .0s, background-color 0ms ease-out; position: relative; } <!--取消点击后恢复动画 END-->
只用transition也是能達到animation的效果的通過設置不同屬性的變化掌握好變化時間和延時的時間就可以讓動畫有先後順序
#以上是CSS實作選單按鈕動畫的程式碼範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!