CSS3是當(dāng)前最新的CSS標(biāo)準(zhǔn)版本,而CSS3的鼠標(biāo)懸停樣式效果也是非常受歡迎的一種應(yīng)用。以下分享15個(gè)基于CSS3技術(shù)實(shí)現(xiàn)的鼠標(biāo)懸停動(dòng)畫效果。
/*1. 水平翻轉(zhuǎn)*/ .hover-effect-1:hover { transform: rotateY(180deg); } /*2. 垂直翻轉(zhuǎn)*/ .hover-effect-2:hover { transform: rotateX(180deg); } /*3. 突出*/ .hover-effect-3:hover { transform: scale(1.2); } /*4. 縮小*/ .hover-effect-4:hover { transform: scale(0.8); } /*5. 旋轉(zhuǎn)*/ .hover-effect-5:hover { transform: rotate(45deg); } /*6. 移動(dòng)*/ .hover-effect-6:hover { transform: translate(20px, 20px); } /*7. 陰影*/ .hover-effect-7:hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } /*8. 透明度*/ .hover-effect-8:hover { opacity: 0.5; } /*9. 邊框*/ .hover-effect-9:hover { border: 2px solid blue; } /*10. 背景*/ .hover-effect-10:hover { background-color: yellow; } /*11. 表格*/ .hover-effect-11:hover td { background-color: pink; } /*12. 圓角*/ .hover-effect-12:hover { border-radius: 50%; } /*13. 旋轉(zhuǎn)縮放*/ .hover-effect-13:hover { transform: rotate(45deg) scale(2); } /*14. 模糊*/ .hover-effect-14:hover { filter: blur(3px); } /*15. 透明度變化*/ .hover-effect-15:hover { background-color: rgba(0, 0, 0, 0.5); }
以上15種鼠標(biāo)懸停動(dòng)畫效果都是基于CSS3技術(shù)實(shí)現(xiàn)的,非常簡(jiǎn)單便捷,同時(shí)也提高了網(wǎng)頁(yè)的交互性和美觀性,希望對(duì)您有所幫助!
上一篇css3d骰子
下一篇css3l的漸變屬性