CSS炫酷hover是網頁設計中經常使用的效果之一。hover指鼠標懸停在某一元素上時觸發的效果,能夠讓網站展現更為生動的交互效果。以下是幾個使用CSS炫酷hover的方法:
/* 1. 圖片變形效果 */ img:hover { transform: scale(1.3); } /* 2. 文字特效 */ h1:hover { color: blue; text-shadow: 1px 1px 3px #ccc; } /* 3. 背景透明度變化 */ div:hover { opacity: 0.8; } /* 4. 帶動畫效果的菜單欄 */ a:hover { animation: bounce 0.5s; animation-direction: alternate; } @keyframes bounce { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } } /* 5. 過渡效果 */ button { background-color: green; color: white; transition: background-color 0.5s; } button:hover { background-color: lightgreen; }
以上是幾個常見的CSS炫酷hover效果,可以根據自己的需求進行修改。但是要注意,過多的hover效果可能會降低網站的性能,因此應盡量控制效果數量。
上一篇mysql建表的工具