日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:52000
  • 待審:37
  • 小程序:12
  • 文章:1037587
  • 會員:756

我們傾向于使用html與css、JAVAScript等,使我們的網(wǎng)站或博客看起來更有吸引力,但你知道僅HTML就有很多實用的秘密,可能會派上用場,幫助你設(shè)計一個華麗的網(wǎng)站?

下面是一些很酷的HTML技巧,你可以用它來建立一個真正的動態(tài)網(wǎng)站。

 

技巧1. Image Maps

image map基本上是具有可點擊區(qū)域的圖像。我們可以使用該可點擊區(qū)域鏈接到網(wǎng)頁的其他部分、文檔或新鏈接。

好吧,并不是每個人都知道<map>元素可以定義用戶可以單擊的圖像區(qū)域。我們需要做的就是使用<area>元素并在<map>元素中提及其對應(yīng)的 XY 坐標(biāo)。

下面是一個例子,你的網(wǎng)站訪問者可以在點擊世界地圖的不同大洲時了解你在全球的業(yè)務(wù)。

<h1 style="text-align:center;">World Map</h1> 
<h4 style="text-align:center;">? Click on the dots in the map to get respective continent information</h4> 
<map name="continents_map"> 
<area shape="circle" coords="70,70,10" href="https://en.wikipedia.org/wiki/North_America"> 
<area shape="circle" coords="133,185,10" href="https://en.wikipedia.org/wiki/South_America"> 
<area shape="circle" coords="270,137,10" href="https://en.wikipedia.org/wiki/Africa"> 
<area shape="circle" coords="292,44,10" href="https://en.wikipedia.org/wiki/Europe"> 
<area shape="circle" coords="469,201,10" 
href="https://en.wikipedia.org/wiki/Australia"> 
<area shape="circle" coords="374,65,10" href="https://en.wikipedia.org/wiki/Asia"> 
<area shape="circle" coords="340,267,10" href="https://en.wikipedia.org/wiki/Antarctica"> 
</map> 
<figure style="text-align:center;"> 
<img usemap="#continents_map" src=https://bit.ly/2bgFrvL width="600px" /> 
</figure> 

HTML進階指南:七個讓你驚嘆的技巧!

技巧2:Icon Adder

Icon Adder基本上是指使用圖標(biāo)代替網(wǎng)站圖標(biāo)。

你只需要在body標(biāo)簽內(nèi)的link標(biāo)簽中包含你的源圖像文件的路徑鏈接。

<!DOCTYPE html> 
<html> 
<head> 
<title>Icon Adder</title> 
<meta name="theme-color" content="green;"> 
<link rel="icon" href="download.jpg" 
type="image/x-icon"/> 
<style> 
.contAIner { 
text-align: left; 
} 
h1 { 
color: darkred; 
} 
</style> 
</head> 
<body> 
<div class="container"> 
<h1>Hi, I am NISHI KASHYAP!!</h1> 
<b>You can see the icon adder above in place of the favicon.</b> 
</div> 
</body> 
</html> 

HTML進階指南:七個讓你驚嘆的技巧!

技巧3:允許用戶選擇背景顏色

使用此技巧,網(wǎng)站訪問者只需將鼠標(biāo)指針拖到書面文本的某些字母上即可更改其網(wǎng)頁的背景顏色。

例子:在這種情況下,訪問者可以通過將鼠標(biāo)指針拖到“Drag Your Mouse Over Letters To Change Colors!”的文字上來改變顏色。

<center> 
<a href="" onmouseover="document.bgColor='turquoise'">D</a> 
<a href="" onmouseover="document.bgColor='pink'">r</a> 
<a href="" onmouseover="document.bgColor='blue'">a</a> 
<a href="" onmouseover="document.bgColor='red'">g</a> 
<a href="" onmouseover="document.bgColor='yellow'">Y</a> 
<a href="" onmouseover="document.bgColor='green'">o</a> 
<a href="" onmouseover="document.bgColor='white'">u</a> 
<a href="" onmouseover="document.bgColor='teal'">r</a> 
<a href="" onmouseover="document.bgColor='olivedrab'">M</a> 
<a href="" onmouseover="document.bgColor='green'">o</a> 
<a href="" onmouseover="document.bgColor='seagreen'">u</a> 
<a href="" onmouseover="document.bgColor='magenta'">s</a> 
<a href="" onmouseover="document.bgColor='fusia'">e</a> 
<a href="" onmouseover="document.bgColor='purple'">O</a> 
<a href="" onmouseover="document.bgColor='navy'">v</a> 
<a href="" onmouseover="document.bgColor='green'">e</a> 
<a href="" onmouseover="document.bgColor='white'">r</a> 
<a href="" onmouseover="document.bgColor='royalblue'">L</a> 
<a href="" onmouseover="document.bgColor='Skyblue'">e</a> 
<a href="" onmouseover="document.bgColor='almond'">tt</a> 
<a href="" onmouseover="document.bgColor='coral'">e</a> 
<a href="" onmouseover="document.bgColor='brown'">r</a> 
<a href="" onmouseover="document.bgColor='almond'">s</a> 
<a href="" onmouseover="document.bgColor='coral'">To</a> 
<a href="" onmouseover="document.bgColor='olivedrab'">C</a> 
<a href="" onmouseover="document.bgColor='teal'">h</a> 
<a href="" onmouseover="document.bgColor='pink'">a</a> 
<a href="" onmouseover="document.bgColor='blue'">n</a> 
<a href="" onmouseover="document.bgColor='red'">g</a> 
<a href="" onmouseover="document.bgColor='yellow'">e</a> 
<a href="" onmouseover="document.bgColor='green'">C</a> 
<a href="" onmouseover="document.bgColor='olivedrab'">ol</a> 
<a href="" onmouseover="document.bgColor='black'">or!</a> 
</center> 

輸出

HTML進階指南:七個讓你驚嘆的技巧!

HTML進階指南:七個讓你驚嘆的技巧!

技巧4:添加Title Tooltip

Tooltip是“HTML中使用的一個概念,用于顯示關(guān)于特定選定元素的一些額外信息”。

這個技巧基本上顯示了當(dāng)訪問者將鼠標(biāo)指針懸停在一個元素上時,網(wǎng)站創(chuàng)建者提供的額外信息。

語法:

<span title="Can you see this? This is the tooltip.:)">Drag Your Mouse Over Me!</span> 

輸出:

HTML進階指南:七個讓你驚嘆的技巧!

技巧5:語音識別

此功能類似于您在 google 搜索文本框中看到的功能,其中語音識別功能可幫助您將句子放入輸入字段。

當(dāng)你使用語音識別輸入時,在輸入字段的邊上會有一個小的麥克風(fēng)圖標(biāo)顯示,當(dāng)訪問者點擊該語音圖標(biāo)時,他們的聲音會被記錄下來并作為用戶的輸入。

為此,您只需將 x-webkit-speech 屬性添加到輸入框。

<input type="text" x-webkit-speech /> 

讓我給你看一個例子:

<!DOCTYPE html> 
<html> 
<head> 
<title>Voice Recognition</title> 
<style> 
.container { 
text-align: center; 
} 
 
h1 { 
color: darkred; 
} 
</style> 
</head> 
 
<body> 
<div class="container"> 
<h1>Voice Recognition Field</h1> 
<input type="text" x-webkit-speech> 
<i><br><br>The above field  accepts the input as a Voice.<i> 
</div> 
</body> 
</html> 

輸出,然而,在實時服務(wù)器中,你會看到這個:

HTML進階指南:七個讓你驚嘆的技巧!

但當(dāng)你從其他瀏覽器查看時,你也會看到輸入欄中的麥克風(fēng)圖標(biāo),用戶可以通過它輸入語音。

技巧6:隱藏字段

能夠公開查看內(nèi)部字段被Reddit士兵稱為“編程恐怖”——毫無疑問,沒有人想在自己的網(wǎng)站上體驗這種恐怖。

但是這個問題可以通過使用HTML的隱藏字段特性來解決。

一個隱藏字段可以讓web開發(fā)人員控制哪些數(shù)據(jù)可以被修改,哪些數(shù)據(jù)不能被修改,以及當(dāng)用戶提交表單時需要更新的記錄。

語法:

<input type="hidden"> 

它是這樣工作的:

 
<!DOCTYPE html> 
<html> 
<head> 
<title>Hide Field</title> 
<style> 
h1 { 
color: darkred; 
} 
body { 
text-align: center; 
} 
</style> 
</head> 
 
<body> 
<h1>HIDE FIELD</h1> 
<form action="#"> 
<input type="hidden" id="myFile" value="1234"> 
Name: <input type="text"> 
<input type="submit" value="Submit"> 
</form> 
</body> 
</html> 

從上面的代碼中,結(jié)果輸出將是一個訪問者無法看到的隱藏字段。

輸出:

HTML進階指南:七個讓你驚嘆的技巧!

技巧7:輸入建議

此功能基本上提供了一個預(yù)定義選項的下拉列表,使訪問者更容易找到他們正在尋找的內(nèi)容。

示例:下面的代碼讓訪問者從下拉列表中找到不同大陸的名稱,并將其用作輸入。

<!DOCTYPE html> 
<html> 
<head> 
<title>Input Suggestions</title> 
</head> 
<body> 
 
<h1>Choose the Continent</h1> 
<input type="text" list="text_editors"> 
<datalist id="text_editors"> 
<option value="Africa"></option> 
<option value="Asia"></option> 
<option value="North America"></option> 
<option value="South America"></option> 
<option value="Antarctica"></option> 
<option value="Europe"></option> 
<option value="Australia"></option> 
</datalist> 
</body> 
</html> 

輸出:

HTML進階指南:七個讓你驚嘆的技巧!

分享到:
標(biāo)簽:HTML
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 52000

    網(wǎng)站

  • 12

    小程序

  • 1037587

    文章

  • 756

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定