針對(duì) window 對(duì)象觸發(fā)的事件(應(yīng)用到 body 標(biāo)簽):
創(chuàng)新互聯(lián)公司公司2013年成立,先為邱縣等服務(wù)建站,邱縣等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為邱縣企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
onafterprint ? ?script ? ?文檔打印之后運(yùn)行的腳本。 ?
onbeforeprint ? ?script ? ?文檔打印之前運(yùn)行的腳本。 ?
onbeforeunload ? ?script ? ?文檔卸載之前運(yùn)行的腳本。 ?
onerror ? ?script ? ?在錯(cuò)誤發(fā)生時(shí)運(yùn)行的腳本。 ?
onhaschange ? ?script ? ?當(dāng)文檔已改變時(shí)運(yùn)行的腳本。 ?
onload ? ?script ? ?頁(yè)面結(jié)束加載之后觸發(fā)。 ?
onmessage ? ?script ? ?在消息被觸發(fā)時(shí)運(yùn)行的腳本。 ?
onoffline ? ?script ? ?當(dāng)文檔離線時(shí)運(yùn)行的腳本。 ?
ononline ? ?script ? ?當(dāng)文檔上線時(shí)運(yùn)行的腳本。 ?
onpagehide ? ?script ? ?當(dāng)窗口隱藏時(shí)運(yùn)行的腳本。 ?
onpageshow ? ?script ? ?當(dāng)窗口成為可見時(shí)運(yùn)行的腳本。 ?
onpopstate ? ?script ? ?當(dāng)窗口歷史記錄改變時(shí)運(yùn)行的腳本。 ?
onredo ? ?script ? ?當(dāng)文檔執(zhí)行撤銷(redo)時(shí)運(yùn)行的腳本。 ?
onresize ? ?script ? ?當(dāng)瀏覽器窗口被調(diào)整大小時(shí)觸發(fā)。 ?
onstorage ? ?script ? ?在 Web Storage 區(qū)域更新后運(yùn)行的腳本。 ?
onundo ? ?script ? ?在文檔執(zhí)行 undo 時(shí)運(yùn)行的腳本。 ?
onunload ? ?script ? ?一旦頁(yè)面已下載時(shí)觸發(fā)(或者瀏覽器窗口已被關(guān)閉)。 ?
一、 HTML5新增的標(biāo)簽
(1)header nav main? footer? section article hgroup? figure figcaption? aside?
video? audio canvas
? ? ? ? ? ? (2)如何讓新標(biāo)簽兼容低版本瀏覽器:? html5shiv.js
二、 HTML5新增的表單控件
一、表單控件的新屬性
? ? ? ? input type="text"? placeholder=""? required? autofocus? pattern="abc"
二、新增的表單控件
(1)input type="email"
(2)input type="url"
? (3)數(shù)字控件:? type="number"
? (4)? 滑動(dòng)組件:? type="range"
? (5)? 拾色器:? ? ? type="color"
? (6)? 日期控件:? ? type="date"
三、本地存儲(chǔ)
1、 三種本地存儲(chǔ) :? cookie webStorage(localStorage? sessionStorage)
2、localStorage的API
? (1)寫入:? localStorage.setItem(鍵,值);? //值只能是字符串
? localStorage.user = "123" localStorage["user"] = "123"
? (2)讀取? var user = localStorage.getItem("user")
? ? ? ? ? ? ? var user = localStorage.user;
? ? (3)刪除:? localStorage.removeItem("user")? ? localStorage.clear()
? ? (4)修改:? localStorage.setItem("user","890")
3、sessionStorage的API
sessionStorage.setItem(鍵,值);
? ? sessionStorage.getItem(鍵);
? ? sessionStorage.removeItem(鍵);
sessionStorage.clear();
**********重點(diǎn)**********
? 4、cookie webStorage(localStorage? sessionStorage)三者的區(qū)別
四、離線存儲(chǔ)
(1) *.manifest? (*.appcache)?
? ? ? index.html? html manifest="*.manifest"
(2) 理解離線存儲(chǔ)的更新方式
五、移動(dòng)端的布局思路:
1、設(shè)備像素比(倍率)? 邏輯像素尺寸 (360px? 320px? 375px? 414px)
? ? ? ? window.devicePixelRatio
? ? 2、 meta name="viewport" content="width=device-width,maximum-
scale=1.0,minimum-scale=1.0,initial-scale=1.0,user-scalable=no""
3、使用rem單位
六、地理定位
if (navigator.geolocation){?
? ? ? ? navigator.geolocation.getCurrentPosition(success,error,{
? ? ? ? ? ? timeout: 5000
? ? ? ? });
? ? ? ? function success(pos){
? ? ? ? ? ? 緯度:? pos.coords.latitute
? ? ? ? ? ? 經(jīng)度:? pos.coords.longtitude
? ? ? ? }
? ? }
? ? navigator.geolocation.watchPosition(success);
七、地理定位和百度地圖API的結(jié)合
八、視頻,音頻? video autoplay="autoplay" controls="controls" loop="loop" poster=""
preload="preload"? audio
九、移動(dòng)端事件:?
(1) ontouchstart? ontouchmove? ontouchend
(2) 如何判斷是否為移動(dòng)端:? if ("ontouchstart" in document){}
? ? (3) 移動(dòng)端事件的事件對(duì)象及常用屬性
? ? ? e.touches[0].clientX? e.touches[0].clientY? e.touches[0].target
? (4) 移動(dòng)端常見問題及解決方案:
a、 click事件 300ms的延遲:? 1zepto的tap事件? (2) fastclick.js
b、 zepto的tap事件有點(diǎn)透問題 :? (1) fastclick.js
? ? (5) zepto的touch模塊:? tap? singleTap? doubleTap? longTap?
? ? ? ? ? ? swipeLeft? swipeRight? swipeUp? swipeDown
十、swiper.js的使用? (參考官網(wǎng))
十一、 canvas
(1)? canvas width="600" id="can"/canvas? ? 300*150
? (2)? var can = document.getElementById("can");
? var cxt = can.getContext("2d");
cxt.beginPath();
cxt.moveTo(100,200);
cxt.lineTo(200,400);
? ? ? ? ? cxt.strokeStyle = '#f00';
cxt.stroke();
? ? ? ? ? ? ? cxt.clearRect(0,0,200,300);
? ? ? ? ? ? ? context.globalCompositeOperation="destination-out";? (了解)
一般來說,html5的功能展示是依賴于瀏覽器的。瀏覽器提供了多少可調(diào)用的接口,使用html5就可以實(shí)現(xiàn)多少功能。但是瀏覽器一般不會(huì)實(shí)現(xiàn)html5完全訪問或控制本地資源的權(quán)限,所以實(shí)現(xiàn)的功能還是有限的。\x0d\x0a 不過目前也有許多通過html5+css+js甚至結(jié)合其他語(yǔ)言實(shí)現(xiàn)的桌面程序。例如目前可以采用的方案舉幾個(gè)例子:\x0d\x0a1、Node-WebKit\x0d\x0a1.1 Node-WebKit能把HTML5應(yīng)用打包成本地桌面應(yīng)用,在Windows、Linux或Mac平臺(tái)上,不需要其它依賴就可以獨(dú)立運(yùn)行你的HTML5應(yīng)用。\x0d\x0a1.2 支持Node.js??梢允褂肗ode.js的所有模塊來開發(fā)app或游戲。不僅可以使用Node.js原生的模塊,而且可以使用第三方的node.js模塊。\x0d\x0a2、heX 是網(wǎng)易有道團(tuán)隊(duì)的一個(gè)開源項(xiàng)目,允許采用前端技術(shù)(HTML,CSS,JavaScript)開發(fā)桌面應(yīng)用軟件的跨平臺(tái)解決方案。這個(gè)項(xiàng)目目前處于停滯狀態(tài)。\x0d\x0a3、自己開發(fā)一下基于瀏覽器框架的應(yīng)用。例如基于谷歌瀏覽器核心,前端使用瀏覽器渲染功能結(jié)合html5+css+js,后端使用c++開發(fā)。
html是一門開發(fā)網(wǎng)頁(yè)的語(yǔ)言哦~
不適合開發(fā)windows程序哦~如果想要開發(fā)窗口程序,建議使用java或者c語(yǔ)言之類的
如果想要開發(fā)一個(gè)網(wǎng)頁(yè)的話,html是個(gè)很好的選擇。
c語(yǔ)言的例子:
#include?windows.h??
LRESULT?CALLBACK?MyProc(HWND?hwnd,UINT?message,WPARAM?wParam,LPARAM?lParam);??
int?WINAPI?WinMain(HINSTANCE?hInstance,?HINSTANCE?hPrevInstance,?LPSTR?lpCmdLine,?int?nShowCmd?)??
{??
MSG??????msg;??
HWND?????hwnd;??
static?TCHAR?szAppName[]?=?"hl";??
WNDCLASS?wndclass;??
wndclass.style????????=?CS_HREDRAW?|?CS_VREDRAW;??
wndclass.cbClsExtra???=?0;??
wndclass.cbWndExtra???=?0;??
wndclass.lpfnWndProc??=?MyProc;??
wndclass.hInstance????=?hInstance;??
wndclass.hIcon????????=?LoadIcon(NULL,IDI_APPLICATION);??
wndclass.hCursor??????=?LoadCursor(NULL,IDC_ARROW);??
wndclass.hbrBackground=?(HBRUSH)GetStockObject(WHITE_BRUSH);??
wndclass.lpszMenuName?=?NULL;??
wndclass.lpszClassName=?szAppName;??
if(!RegisterClass(wndclass))??
{??
MessageBox(NULL,TEXT("error"),TEXT("title"),MB_ICONERROR);??
return?0;??
}??
hwnd?=?CreateWindow(szAppName,??
TEXT("Hello"),??
WS_OVERLAPPEDWINDOW,??
CW_USEDEFAULT,??
CW_USEDEFAULT,??
CW_USEDEFAULT,??
CW_USEDEFAULT,??
NULL,??
NULL,??
hInstance,??
NULL??
);??
ShowWindow(hwnd,nShowCmd);??
UpdateWindow(hwnd);??
while(GetMessage(msg,hwnd,0,0))??
{??
TranslateMessage(msg);??
DispatchMessage(msg);??
}??
return?msg.wParam;??
}??
LRESULT?CALLBACK?MyProc(HWND?hwnd,UINT?message,WPARAM?wParam,LPARAM?lParam)??
{??
switch(message)??
{??
case?WM_DESTROY:??
PostQuitMessage(0);??
return?0;??
}??
return?DefWindowProc(hwnd,message,wParam,lParam);??
}
只能做到關(guān)閉標(biāo)簽吧,由于各種瀏覽器設(shè)置不一樣,但是大部分都是空白標(biāo)簽也不會(huì)退出瀏覽器,所以JS還是沒有辦法關(guān)閉程序。(畢竟瀏覽器算是應(yīng)用程序范圍,不是HTML部分了)
彈出窗口總結(jié)收集(續(xù))
Asp教程-ASP應(yīng)用
this.Response.Write("Scriptwindow.open('WebForm7.aspx','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=750,height=470,left=80,top=40');/script");
彈出跟你當(dāng)前的窗口有沒有菜單工具欄沒有關(guān)系,你只要在頁(yè)面中寫一個(gè)腳本它就彈出了.比如
a href=# onclick="window.open('xxx.aspx','窗口名稱','參數(shù)');"xxxxx/a
以下列出一些彈出窗口的參數(shù),你可自行設(shè)定,參數(shù)之間用逗號(hào)分隔
可選。字符串--列出對(duì)象表并用逗號(hào)分開。每一項(xiàng)都有自己的值,他們將被分開(如:"fullscreen=yes, toolbar=yes")。下面是被支持的各種特性。
channelmode = { yes | no | 1 | 0 } 是否在窗口中顯示階梯模式。默認(rèn)為no。
directories = { yes | no | 1 | 0 } 是否在窗口中顯示各種按鈕。默認(rèn)為yes。
fullscreen = { yes | no | 1 | 0 } 是否用全屏方式顯示瀏覽器。默認(rèn)為no。使用這一特性時(shí)需要非常小心。因?yàn)檫@一屬性可能會(huì)隱藏瀏覽器的標(biāo)題欄和菜單,你必須提供一個(gè)按鈕或者其他提示來幫助使用者關(guān)閉這一瀏覽窗口。ALT+F4可以關(guān)閉窗口。一個(gè)全屏窗口必須使用階梯(channelmode)模式。
height = number 指定窗口的高度,單位是像素。最小值是100。
left = number 指定窗口距左邊框的距離,單位是像素。值必須大于或者等于0。
location = { yes | no | 1 | 0 } 指定是否在窗口中顯示地址欄。默認(rèn)為yes。
menubar = { yes | no | 1 | 0 } 指定是否在窗口中顯示菜單欄。默認(rèn)為yes。
resizable = { yes | no | 1 | 0 } 指定是否在窗口中顯示可供用戶調(diào)整大小的句柄。默認(rèn)為yes。
scrollbars = { yes | no | 1 | 0 } 指定是否在窗口中顯示橫向或者縱向滾動(dòng)條。默認(rèn)為yes。
status = { yes | no | 1 | 0 } 指定是否在窗口中顯示狀態(tài)欄。默認(rèn)為yes。
titlebar = { yes | no | 1 | 0 } 指定是否在窗口中顯示標(biāo)題欄。在非調(diào)用HTML Application或者一個(gè)對(duì)話框的情況下,這一項(xiàng)將被忽略。默認(rèn)為yes。
toolbar = { yes | no | 1 | 0 } 指定是否在窗口中顯示工具欄,包括如前進(jìn)、后退、停止等按鈕。默認(rèn)為yes。
top = number 指定窗口頂部的位置,單位是像素。值必須大于或者等于0。
width = number 指定窗口的寬度,單位是像素。最小值是100。
【1、最基本的彈出窗口代碼】
SCRIPT LANGUAGE="javascript"
!--
window.open ('page.html')
--
/SCRIPT
因?yàn)檫@是一段javascripts代碼,所以它們應(yīng)該放在SCRIPT LANGUAGE="javascript"標(biāo)簽和/script之間。!-- 和 --是對(duì)一些版本低的瀏覽器起作用,在這些老瀏覽器中不會(huì)將標(biāo)簽中的代碼作為文本顯示出來。要養(yǎng)成這個(gè)好習(xí)慣啊。window.open ('page.html') 用于控制彈出新的窗口page.html,如果page.html不與主窗口在同一路徑下,前面應(yīng)寫明路徑,絕對(duì)路徑(http://)和相對(duì)路徑(../)均可。用單引號(hào)和雙引號(hào)都可以,只是不要混用。這一段代碼可以加入HTML的任意位置,head和/head之間可以,body間/body也可以,越前越早執(zhí)行,尤其是頁(yè)面代碼長(zhǎng),又想使頁(yè)面早點(diǎn)彈出就盡量往前放。
【2、經(jīng)過設(shè)置后的彈出窗口】
下面再說一說彈出窗口的設(shè)置。只要再往上面的代碼中加一點(diǎn)東西就可以了。我們來定制這個(gè)彈出的窗口的外觀,尺寸大小,彈出的位置以適應(yīng)該頁(yè)面的具體情況。
SCRIPT LANGUAGE="javascript"
!--
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no') //這句要寫成一行
--
/SCRIPT
參數(shù)解釋:
SCRIPT LANGUAGE="javascript" js腳本開始;
window.open 彈出新窗口的命令;
'page.html' 彈出窗口的文件名;
'newwindow' 彈出窗口的名字(不是文件名),非必須,可用空''代替;
height=100 窗口高度;
width=400 窗口寬度;
top=0 窗口距離屏幕上方的象素值;
left=0 窗口距離屏幕左側(cè)的象素值;
toolbar=no 是否顯示工具欄,yes為顯示;
menubar,scrollbars 表示菜單欄和滾動(dòng)欄。
resizable=no 是否允許改變窗口大小,yes為允許;
location=no 是否顯示地址欄,yes為允許;
status=no 是否顯示狀態(tài)欄內(nèi)的信息(通常是文件已經(jīng)打開),yes為允許;
/SCRIPT js腳本結(jié)束
【3、用函數(shù)控制彈出窗口】
下面是一個(gè)完整的代碼。
html
head
script LANGUAGE="JavaScript"
!--
function openwin() {
window.open ("page.html", "newwindow", "height=100, width=400, toolbar =no, menubar=no, scrollbars=no, resizable=no, location=no, status=no") //寫成一行
}
//--
/script
/head
body onload="openwin()"
任意的頁(yè)面內(nèi)容...
/body
/html
這里定義了一個(gè)函數(shù)openwin(),函數(shù)內(nèi)容就是打開一個(gè)窗口。在調(diào)用它之前沒有任何用途。怎么調(diào)用呢?
方法一:body onload="openwin()" 瀏覽器讀頁(yè)面時(shí)彈出窗口;
方法二:body onunload="openwin()" 瀏覽器離開頁(yè)面時(shí)彈出窗口;
方法三:用一個(gè)連接調(diào)用:
a href="#" onclick="openwin()"打開一個(gè)窗口/a
注意:使用的“#”是虛連接。
方法四:用一個(gè)按鈕調(diào)用:
input type="button" onclick="openwin()" value="打開窗口"
【4、同時(shí)彈出2個(gè)窗口】
對(duì)源代碼稍微改動(dòng)一下:
script LANGUAGE="JavaScript"
!--
function openwin() {
window.open ("page.html", "newwindow", "height=100, width=100, top=0, left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=n o, status=no")//寫成一行
window.open ("page2.html", "newwindow2", "height=100, width=100, top=1 00, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, loca tion=no, status=no")//寫成一行
}
//--
/script
為避免彈出的2個(gè)窗口覆蓋,用top和left控制一下彈出的位置不要相互覆蓋即可 。最后用上面說過的四種方法調(diào)用即可。
注意:2個(gè)窗口的name(newwindows和newwindow2)不要相同,或者干脆全部為空。
【5、主窗口打開文件1.htm,同時(shí)彈出小窗口page.html】
如下代碼加入主窗口head區(qū):
script language="javascript"
!--
function openwin() {
window.open("page.html","","width=200,height=200")
}
//--
/script
加入body區(qū):
a href="1.htm" onclick="openwin()"open/a即可。
【6、彈出的窗口之定時(shí)關(guān)閉控制】
下面我們?cè)賹?duì)彈出的窗口進(jìn)行一些控制,效果就更好了。如果我們?cè)賹⒁恍《?代碼加入彈出的頁(yè)面(注意是加入page.html的HTML中,不是主頁(yè)面中),讓它10秒后自動(dòng)關(guān)閉是不是更酷了?
首先,將如下代碼加入page.html文件的head區(qū):
script language="JavaScript"
function closeit()
{
setTimeout("self.close()",10000) //毫秒
}
/script
然后儆?lt;body onload="closeit()" 這一句話代替page.html中原有的BODY這一句就可以了。(這一句話千萬不要忘記寫?。∵@一句的作用是調(diào)用關(guān)閉窗口的代碼,10秒鐘后就自行關(guān)閉該窗口。)
【7、在彈出窗口中加上一個(gè)關(guān)閉按鈕】
FORM
INPUT TYPE='BUTTON' VALUE='關(guān)閉' onClick='window.close()'
/FORM
呵呵,現(xiàn)在更加完美了!
【8、內(nèi)包含的彈出窗口-一個(gè)頁(yè)面兩個(gè)窗口】
上面的例子都包含兩個(gè)窗口,一個(gè)是主窗口,另一個(gè)是彈出的小窗口。通過下面的例子,你可以在一個(gè)頁(yè)面內(nèi)完成上面的效果。
html
head
SCRIPT LANGUAGE="JavaScript"
function openwin()
{
OpenWindow=window.open("", "newwin", "height=250, width=250,toolbar=no ,scrollbars="+scroll+",menubar=no");
//寫成一行
OpenWindow.document.write("TITLE例子/TITLE")
OpenWindow.document.write("BODY BGCOLOR=#ffffff")
OpenWindow.document.write("h1Hello!/h1")
OpenWindow.document.write("New window opened!")
OpenWindow.document.write("/BODY")
OpenWindow.document.write("/HTML")
OpenWindow.document.close()
}
/SCRIPT
/head
body
a href="#" onclick="openwin()"打開一個(gè)窗口/a
input type="button" onclick="openwin()" value="打開窗口"
/body
/html
看看OpenWindow.document.write()里面的代碼不就是標(biāo)準(zhǔn)的HTML嗎?只要按照格式寫更多的行即可。千萬注意多一個(gè)標(biāo)簽或少一個(gè)標(biāo)簽就會(huì)出現(xiàn)錯(cuò)誤。記得用 OpenWindow.document.close()結(jié)束啊。
【9、終極應(yīng)用--彈出的窗口之Cookie控制】
回想一下,上面的彈出窗口雖然酷,但是有一點(diǎn)小毛病,比如你將上面的腳本放在一個(gè)需要頻繁經(jīng)過的頁(yè)面里(例如首頁(yè)),那么每次刷新這個(gè)頁(yè)面,窗口都會(huì)彈出一次,我們使用cookie來控制一下就可以了。
首先,將如下代碼加入主頁(yè)面HTML的HEAD區(qū):
script
function openwin(){
window.open("page.html","","width=200,height=200")
}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
function loadpopup(){
if (get_cookie('popped')==''){
openwin()
document.cookie="popped=yes"
}
}
/script
然后,用body onload="loadpopup()"(注意不是openwin而是loadpop?。。┨鎿Q主頁(yè)面中原有的BODY這一句即可。你可以試著刷新一下這個(gè)頁(yè)面或重新進(jìn)入該頁(yè)面,窗口再也不會(huì)彈出了。真正的Pop-Only-Once!