在網(wǎng)頁(yè)設(shè)計(jì)中,按鈕是非常重要的元素之一。而想要實(shí)現(xiàn)一個(gè)漂亮且有吸引力的按鈕,H5 CSS就是一個(gè)不錯(cuò)的選擇。本文將介紹一些常用的H5 CSS按鈕效果代碼。
首先,我們需要先創(chuàng)建一個(gè)基本的按鈕。代碼如下:
<button class="button">按鈕</button>
其中,“button”是class名稱(chēng)。現(xiàn)在,我們就可以開(kāi)始添加各種效果了。
1. 圓角按鈕.button {
border-radius: 10px;
}
2. 立體按鈕.button {
border: none;
box-shadow: 0px 10px 0px 0px #3db0f5;
transition: all 0.1s ease-in-out;
}
.button:hover {
box-shadow: 0px 5px 0px 0px #3db0f5;
transform: translateY(5px);
}
3. 玻璃效果按鈕.button {
background-color: rgba(255, 255, 255, 0.7);
border: none;
border-radius: 3px;
box-shadow: 0px 2px 0px #c4c4c4;
color: #333;
font-size: 1.5rem;
line-height: 1.5;
padding: 1rem;
transition: all 0.2s ease-in-out;
}
.button:hover {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0px 0px 0px #c4c4c4;
color: #3db0f5;
transform: translateY(-3px);
}
4. 方形陰影按鈕.button {
border: none;
background-color: #f9f9f9;
color: #939393;
padding: 15px 30px;
font-size: 16px;
position: relative;
transition: all 300ms ease;
}
.button:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
opacity: 0;
transition: opacity 300ms ease;
}
.button:hover {
color: #f9f9f9;
}
.button:hover:before {
opacity: 1;
}
以上就是幾種常用的H5 CSS按鈕效果代碼。希望能對(duì)你的網(wǎng)頁(yè)設(shè)計(jì)有所幫助。