HTML是網(wǎng)頁的基礎(chǔ),而CSS美化網(wǎng)頁的外觀。在CSS中,我們可以通過屬性和值來定義HTML元素的樣式。有些CSS代碼可以讓網(wǎng)頁變得更加炫酷,下面給大家分享一些常用的CSS代碼。
/* 1. 文本模糊效果 */ .text { color: transparent; text-shadow: 0 0 5px rgba(0,0,0,0.5); } /* 2. 實(shí)現(xiàn)純CSS滾動(dòng)條 */ ::-webkit-scrollbar { width: 15px; } ::-webkit-scrollbar-track { background-color: #f1f1f1; } ::-webkit-scrollbar-thumb { background-color: #888; border-radius: 10px; } /* 3. 鼠標(biāo)經(jīng)過文本顯示邊框 */ .hover-border { border: 2px solid transparent; } .hover-border:hover { border-color: #ff6600; } /* 4. 實(shí)現(xiàn)抖動(dòng)動(dòng)畫效果 */ @keyframes shake { 0% { transform: translate(1px, 1px) rotate(0deg); } 10% { transform: translate(-1px, -2px) rotate(-1deg); } 20% { transform: translate(-3px, 0px) rotate(1deg); } 30% { transform: translate(3px, 2px) rotate(0deg); } 40% { transform: translate(1px, -1px) rotate(1deg); } 50% { transform: translate(-1px, 2px) rotate(-1deg); } 60% { transform: translate(-3px, 1px) rotate(0deg); } 70% { transform: translate(3px, 1px) rotate(-1deg); } 80% { transform: translate(-1px, -1px) rotate(1deg); } 90% { transform: translate(1px, 2px) rotate(0deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } } .shake { animation: shake 1s infinite; }
以上這些CSS代碼只是冰山一角,同樣的代碼在不同的網(wǎng)頁上會(huì)產(chǎn)生不同的效果,因此我們需要根據(jù)具體情況去選擇和修改CSS代碼。希望這些代碼能對(duì)您的網(wǎng)頁美化有所啟發(fā)。