HTML作為網(wǎng)頁設(shè)計(jì)的基礎(chǔ)語言,除了可以用于網(wǎng)頁內(nèi)容的排版和顯示,還可以用來實(shí)現(xiàn)一些特效。下面是一些常用的HTML特效代碼合集,不需要使用CSS。
1. 網(wǎng)頁跳轉(zhuǎn):<a >跳轉(zhuǎn)鏈接</a>2. 圖片預(yù)覽:<a href="images/image.jpg" target="_blank"> <img src="images/thumb.jpg" alt="圖片名稱"> </a>3. 頁面自動跳轉(zhuǎn):<meta http-equiv="refresh" content="5;url=http://example.com">4. 頁面滾動到指定位置:<a href="#anchor">點(diǎn)擊跳轉(zhuǎn)到錨點(diǎn)</a> <a name="anchor">錨點(diǎn)位置</a>5. 頁面內(nèi)文字高亮:<a href="#highlight" id="highlight">點(diǎn)擊高亮</a> <script> document.getElementById("highlight").onclick = function() { var element = document.getElementById("highlighted-text"); element.style.backgroundColor = "yellow"; element.style.color = "black"; }; </script> <p id="highlighted-text">需要高亮的文字</p>