您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何用css3實(shí)現(xiàn)鼠標(biāo)懸停動(dòng)畫(huà)按鈕”,在日常操作中,相信很多人在如何用css3實(shí)現(xiàn)鼠標(biāo)懸停動(dòng)畫(huà)按鈕問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何用css3實(shí)現(xiàn)鼠標(biāo)懸停動(dòng)畫(huà)按鈕”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
今天給大家?guī)?lái)一款純css3實(shí)現(xiàn)的鼠標(biāo)懸停動(dòng)畫(huà)按鈕。這款按鈕鼠標(biāo)經(jīng)過(guò)前以正方形的形式,當(dāng)鼠標(biāo)經(jīng)過(guò)的時(shí)候以動(dòng)畫(huà)的形式變成圓形。效果圖如下:
實(shí)現(xiàn)的代碼。
html代碼:
復(fù)制內(nèi)容到剪貼板
<div>
<span></span>
</div>
css3代碼:
CSS Code復(fù)制內(nèi)容到剪貼板
body
{
background-color: #333;
}
div
{
width: 200px;
height: 200px;
margin: 0 auto;
}
span
{
position: relative;
width: 180px;
height: 180px;
display: block;
margin: auto;
top: 25px;
border: 20px solid rgba(255, 255, 0, .25);
background-color: rgba(124,155,13,1);
-webkit-transition: .5s;
-moz-transition: .5s;
-ms-transition: .5s;
transition: .5s;
border-radius: 30px 0px 30px 0px;
}
span:before, span:after
{
position: absolute;
display: block;
background-color: #fff;
border-radius: 10px;
margin: auto;
top: 0px;
bottombottom: 0px;
left: 0px;
rightright: 0px;
}
span:before
{
width: 100px;
height: 10px;
content: "";
}
span:after
{
width: 10px;
height: 100px;
content: "";
}
div:hover span
{
-webkit-transform: scale(.5) rotate(45deg);
-moz-transform: scale(.5) rotate(45deg);
-ms-transform: scale(.5) rotate(45deg);
transform: scale(.5) rotate(45deg);
border-radius: 110px;
background-color: rgba(112,18,255,1);
}
到此,關(guān)于“如何用css3實(shí)現(xiàn)鼠標(biāo)懸停動(dòng)畫(huà)按鈕”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。