您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關利用css實現鼠標懸停效果的方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
我們先來看下效果:
html代碼:
<div class="box shadow"> 這是是pic-1 <div class="circle"></div> </div> <div class="box shadow"> 這是是pic-2 <div class="circle"></div> </div> <div class="box shadow"> 這是是pic-3 <div class="circle"></div> </div>
css代碼:
<style type="text/css"> html { box-sizing: border-box; font: 18px PT Mono; background: antiquewhite; } *, *::before, *::after { box-sizing: inherit; } body { display: flex; align-items: center; justify-content: center; flex-direction: column; width: 100%; height: 100vh; } .box { width: 25%; min-width: 250px; display: block; height: 50px; position: relative; border-radius: 5px; background: linear-gradient(to right, #abbd73 35%, #d6e2ad 100%); margin-bottom: 40px; padding: 15px 25px 0 40px; color: darkslategray; box-shadow: 1px 2px 1px -1px #777; transition: background 200ms ease-in-out; } .shadow { position: relative; } .shadow:before { z-index: -1; position: absolute; content: ""; bottom: 13px; right: 7px; width: 75%; top: 0; box-shadow: 0 15px 10px #777; -webkit-transform: rotate(4deg); transform: rotate(4deg); transition: all 150ms ease-in-out; } .box:hover { background: linear-gradient(to right, #abbd73 0%, #abbd73 100%); } .shadow:hover::before { -webkit-transform: rotate(0deg); transform: rotate(0deg); bottom: 20px; z-index: -10; } .circle { position: absolute; top: 14px; left: 15px; border-radius: 50%; box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.5), inset 0 0 0 25px antiquewhite; width: 20px; height: 20px; display: inline-block; } </style>
感謝各位的閱讀!關于利用css實現鼠標懸停效果的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。