1. 黑白圖像
這段代碼會(huì)讓你的彩色照片顯示為黑白照片,是不是很酷呢?
img.desaturate {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
}
2.頁(yè)面頂部陰影
下面這個(gè)簡(jiǎn)單的 css3 代碼片段可以給網(wǎng)頁(yè)加上漂亮的頂部陰影效果:
body:before {
content: "";
position: fixed;
top: -10px;
left: 0;
width: 100%;
height: 10px;
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
box-shadow: 0px 0px 10px rgba(0,0,0,.8);
z-index: 100;
}
3.所有一切都垂直居中,要將所有元素垂直居中,太簡(jiǎn)單了:
html, body {
height: 100%;
margin: 0;
}
body {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: flex;
}
注意:在IE11中要小心flexbox。
4.文本漸變
文本漸變效果很流行,使用 CSS3 能夠很簡(jiǎn)單就實(shí)現(xiàn):
h2[data-text] {
position: relative;
}
h2[data-text]::after {
content: attr(data-text);
z-index: 10;
color: #e3e3e3;
position: absolute;
top: 0;
left: 0;
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)),
color-stop(50%, rgba(0,0,0,1)),
to(rgba(0,0,0,0)));
}
5.禁用鼠標(biāo)事件
CSS3 新增的 pointer-events 讓你能夠禁用元素的鼠標(biāo)事件,例如,一個(gè)連接如果設(shè)置了下面的樣式就無(wú)法點(diǎn)擊了。
.disabled {
pointer-events: none;
}
6.模糊文本
簡(jiǎn)單但很漂亮的文本模糊效果,簡(jiǎn)單又好看!
.blur {
color: transparent;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
百恒網(wǎng)絡(luò)創(chuàng)建于2006年10月,主要從事南昌網(wǎng)站建設(shè)、網(wǎng)絡(luò)營(yíng)銷(xiāo)推廣、南昌APP開(kāi)發(fā)、三維全景制作等服務(wù),有十年的建站經(jīng)驗(yàn),只做有效果的網(wǎng)站,歡迎廣大新老客戶來(lái)電咨詢!