html網(wǎng)頁設(shè)計登錄頁面代碼作業(yè)(html網(wǎng)頁制作登錄界面)
本篇文章給大家談?wù)刪tml網(wǎng)頁設(shè)計登錄頁面代碼作業(yè),以及html網(wǎng)頁制作登錄界面對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。
本文目錄一覽:
- 1、html網(wǎng)頁設(shè)計:一個簡單的登錄界面代碼!
- 2、網(wǎng)頁設(shè)計用html和js制作一個登錄界面,大神幫幫忙?
- 3、網(wǎng)頁設(shè)計常用HTML代碼
- 4、網(wǎng)頁制作中登陸界面設(shè)計代碼
- 5、急求一個html成品網(wǎng)頁代碼、作業(yè)
html網(wǎng)頁設(shè)計:一個簡單的登錄界面代碼!
這個簡單,你搜索一下仿站小工具,把你這個網(wǎng)址放進(jìn)去直接仿下起來
網(wǎng)頁設(shè)計用html和js制作一個登錄界面,大神幫幫忙?
① 建議使用HTML標(biāo)簽時用語義化標(biāo)簽,比如主塊部分就先用一個section標(biāo)簽括起來;
② 外加css樣式設(shè)置美化頁面,特別是登錄界面的靈動感;
③ JavaScript綁定事件,實(shí)現(xiàn)更加人性化的功能;
網(wǎng)頁設(shè)計常用HTML代碼
網(wǎng)頁設(shè)計常用HTML代碼大全
HTML是用來描述網(wǎng)頁的一種語言。下面我為大家分享HTML代碼,希望對大家學(xué)習(xí)html代碼有幫助!
忽視右鍵
body oncontextmenu="return false"
或
body style="overflow-y:hidden"
1.如何幾秒后轉(zhuǎn)到別的頁面?
META HTTP-EQUIV="Refresh" CONTENT="時間;URL=地址"
2.點(diǎn)擊關(guān)閉窗口
a href="javascript:top.window.close();"點(diǎn)擊關(guān)閉窗口/a!
3.請問如何去掉主頁右面的滾動條?
body scroll="no"
body style="overflow-y:hidden"
4.請問如何做到讓一個網(wǎng)頁自動關(guān)閉.
html
head
OBJECT id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
param name="Command" value="Close"
/object
/head
body onload="window.setTimeout(‘‘‘‘closes.Click()‘‘‘‘,10000)"
這個窗口會在10秒過后自動關(guān)閉,而且不會出現(xiàn)提示. /body
如何在不刷新頁面的情況下刷新css?
style
button{ color:#000000;}
/style
button onclick=document.styleSheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘點(diǎn)擊按鈕直接修改style標(biāo)簽里button選擇符使按鈕改為紅色/button
請問如何讓網(wǎng)頁自動刷新?
在head部記入META HTTP-EQUIV="Refresh" content="20"其中20為20秒后自動刷新,你可以更改為任意值。
5.如何讓頁面自動刷新?
方法一,用refresh
HTML 代碼片段如下:
head
meta http-equiv="refresh" content="5"
/head
5表示刷新時間
[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運(yùn)行]
方法二,使用setTimeout控制
img src=/logo.gif
script
function rl(){
document.location.reload()
}
setTimeout(rl,2000)
/script
6.如何讓超鏈接沒有下劃線
在源代碼中的HEAD…/HEAD之間輸入如下代碼:
style type="text/css" !--
a { text-decoration: none}
-- /style
7.請問如何去掉IE的上下滾動條?
body style=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘
/body
8.怎樣才能把RealPlayer文件在網(wǎng)頁做一個試聽連接?
embed height=25 src=51js.rm type=audio/x-pn-realaudio-plugin width=50 autostart="false" controls="PlayButton"
9.如何用html實(shí)現(xiàn)瀏覽器上后退按鈕的功能?
a href="java script:history.go(-1)"點(diǎn)擊后退/a
或者
script history.back() /script
10.請問怎么在網(wǎng)頁中改變鼠標(biāo)的箭頭形狀?
HTML 代碼片段如下:
body
a href="#" style="cursor: auto;"auto/abr
a href="#" style="cursor: crosshair "crosshair /abr
a href="#" style="cursor: default "default /abr
a href="#" style="cursor: hand "hand /abr
a href="#" style="cursor: move "move /abr
a href="#" style="cursor: e-resize "e-resize /abr
a href="#" style="cursor: ne-resize "ne-resize /abr
a href="#" style="cursor: nw-resize"nw-resize/abr
a href="#" style="cursor: n-resize"n-resize/abr
a href="#" style="cursor: se-resize"se-resize/abr
a href="#" style="cursor: sw-resize"sw-resize/abr
a href="#" style="cursor: s-resize"s-resize/abr
a href="#" style="cursor: w-resize"w-resize/abr
a href="#" style="cursor: text"text/abr
a href="#" style="cursor: wait"wait/abr
a href="#" style="cursor: help"help/abr
/body
11.怎樣不使用頁面的緩存?即每一次打開頁面時不是調(diào)用緩存中的東西
META HTTP-EQUIV="Pragma" CONTENT="no-cache"
12.頁面打開時自動彈出一個窗口的代碼怎么寫?
HTML 代碼片段如下:
html
head
titleUntitled Document/title
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
script language="B style="color:black;background-color:#A0FFFF"javascript/B"
!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//--
/script
/head
body bgcolor="#FFFFFF" text="#000000" onLoad="MM_openBrWindow(‘‘‘‘‘‘‘‘,‘‘‘‘,‘‘‘‘width=400,height=400‘‘‘‘)"
/body
/html
13.如何讓我的頁面出現(xiàn)一個會講話的小人?Merlin
HTML 代碼片段如下:
HTML
HEAD
TITLE默林/TITLE
META http-equiv=Content-Type content="text/html; charset=gb2312"
/HEAD
BODY
pOBJECT id=sims classid=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F
/OBJECT
SCRIPT
var MerlinID;
var MerlinACS;
sims.Connected = true;
MerlinLoaded = LoadLocalAgent(MerlinID, MerlinACS);
Merlin = sims.Characters.Character(MerlinID);
Merlin.Show();
Merlin.Play("Surprised");
Merlin.Speak("大家好");
Merlin.Play("GestureLeft");
Merlin.Think("我是默林!");
Merlin.Play("Pleased");
Merlin.Think("可愛嗎?");
Merlin.Play("GestureDown");
Merlin.Speak("哈哈!");
Merlin.Hide();
function LoadLocalAgent(CharID, CharACS){
LoadReq = sims.Characters.Load(CharID, CharACS);
return(true);
}
/SCRIPT
/p
p /p
p看此效果必須裝有office2000!?。?p
/BODY
/HTML
14.在頁面中如何加入不是滿鋪的背景圖片,拉動頁面時背景圖不動
HTML 代碼片段如下:
htmlhead
STYLE
body {background-image:url(logo.gif);
background-repeat:no-repeat; background-position:center }
/STYLE
/head
body bgproperties="fixed"
/body
/html
[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運(yùn)行]
background-repeat:no-repeat; 是讓背景圖不占滿整個頁面
body bgproperties="fixed" 是拉動scroll時背景圖不動
15.文本輸入框什么屬性能實(shí)現(xiàn)不可輸入?
HTML 代碼片段如下:
input type="text" name="textfield" disabled
或者
input type="text" name="textfield" readonly
16.如何禁止自己的頁面在別人的框架里打開?
把以下代碼加至你的head區(qū)
script
if (window.top!=self){
window.top.location=self.location
}
/script
17.如何實(shí)現(xiàn)首頁全屏幕顯示?
HTML 代碼片段如下:
html
bodyscript language="B style="color:black;background-color:#A0FFFF"javascript/B"
var coolw=642
var coolh=400
var coolhuang=window.open("","coolhuang","width="+coolw+",height="+coolh+",
fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0")
window.close()
/script/body/html
18.如何監(jiān)聽一個窗口被關(guān)閉了?
HTML 代碼片段如下:
body onunload="alert(‘‘‘‘你關(guān)閉了這個窗口‘‘‘‘)"
19.如何禁止Ctrl+N?
HTML 代碼片段如下:
body onkeydown=return(!(event.keyCode==78event.ctrlKey))
如何把頁面加入用戶的收藏夾?
HTML 代碼片段如下:
a href="B style="color:black;background-color:#A0FFFF"javascript/B:window.external.AddFavorite(‘‘‘‘‘‘‘‘,‘‘‘‘無憂腳本‘‘‘‘)"收藏?zé)o憂腳本/a
如何在我的'頁面中加入背景音樂?
IE: bgsound src="*.mid" loop=infinite
NS:embed src="*.mid" autostart=true hidden=true loop=true
*.mid你的背景音樂的midi格式文件
關(guān)于頁面轉(zhuǎn)換效果
meta http-equiv="page-enter" content="revealTrans(Duration=4,Transition=23)"
或
meta http-equiv="page-exit" content="revealTrans(Duration=4,Transition=23)"
說明:Transition=23是隨機(jī)效果,另可以選0-22任一數(shù)字固定某個效果
如何設(shè)定打開頁面的大小
HTML 代碼片段如下:
body onload="top.resizeTo(300,200);"!--(width,height)--
怎樣雙擊滾屏,單擊停止?
HTML 代碼片段如下:
html
head
title新網(wǎng)頁1/title
/head
body
script language"B style="color:black;background-color:#A0FFFF"javascript/B"
var currentpos,timer;
function initialize()
{
timer=setInterval("scrollwindow()",10);
}
function sc(){
clearInterval(timer);
}
function scrollwindow()
{
currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if (currentpos != document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize
/script
pa/ppa/ppa/ppaa/ppaa/ppaa/p
paa/ppaa/ppaa/ppaa/ppaa/ppaa/p
paa/ppaa/ppaa/ppaa/ppaa/ppaa/p
paa/ppaa/ppaa/ppaa/ppa/p
/body
/html
如何讓body中的文字不被選中?
HTML 代碼片段如下:
body onselectstart="return false" aaa/body
如何讓彈出的窗口不能關(guān)閉?
在新開的窗口中加入如下代碼
body onunload=open(location.href)
/body
如何讓瀏覽器在保存頁面時保存失???
HTML 代碼片段如下:
NOSCRIPT
B style="color:black;background-color:#ffff66"IFRAME/B SRC="*.html"
/B style="color:black;background-color:#ffff66"IFRAME/B
/NOSCRIPT
表單中如何用圖片按鈕實(shí)現(xiàn) reset?
html
head
script
function aaa(){
document.forms[0].reset()
}
/script
/head
body
form
textarea rows="2" name="S1" cols="20"/textarea
input type="submit" values="提交" name="B1"
image src="logo.gif" onclick=aaa()
/form
/body/html
進(jìn)入網(wǎng)頁時彈出的信息對話框
body onLoad="window.alert(‘‘‘‘歡迎光臨本站‘‘‘‘)"
關(guān)閉窗口后彈出對話框
body onUnload="window.alert(‘‘‘‘謝謝你的光臨!歡迎下次再來!‘‘‘‘)"
告別提示
body onUnload= alert("再見,感謝你的訪問!")
右鍵菜單的制作
OBJECT id=menu type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
PARAM name="Command" value="Related Topics,menu"
PARAM name="Item1" value="動易;"
PARAM name="Item2" value="搜狐;"
PARAM name="Item3" value="新浪;"
PARAM name="Item4" value="網(wǎng)易;"
PARAM name="Item5" value="互動學(xué)院;"
/OBJECT script if (document.all) document.body.onmousedown=new Function("if (event.button==2) menu.Click();") /script
下拉菜單
object id=HHCtrl type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11" PARAM name="Command" value="Related Topics,Menu" PARAM name="Item1" value="aspease;" PARAM name="Item2" value="byhu;" PARAM name="Item3" value="lzz;" /object a href=javascript:HHCtrl.Click() title="下拉菜單"下拉菜單/a
;
網(wǎng)頁制作中登陸界面設(shè)計代碼
%@language=vbscript codepage=936 %
%
option explicit
'強(qiáng)制瀏覽器重新訪問服務(wù)器下載頁面,而不是從緩存讀取頁面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
'主要是使隨機(jī)出現(xiàn)的圖片數(shù)字隨機(jī)
%
html
head
title管理員登錄/title
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
link rel="stylesheet" href="Admin_Style.css"
script language=javascript
function SetFocus()
{
if (document.Login.UserName.value=="")
document.Login.UserName.focus();
else
document.Login.UserName.select();
}
function CheckForm()
{
if(document.Login.UserName.value=="")
{
alert("請輸入用戶名!");
document.Login.UserName.focus();
return false;
}
if(document.Login.Password.value == "")
{
alert("請輸入密碼!");
document.Login.Password.focus();
return false;
}
//if (document.Login.CheckCode.value==""){
// alert ("請輸入您的驗證碼!");
// document.Login.CheckCode.focus();
// return(false);
}
}
/script
/head
body onLoad="SetFocus();"
p /p
form name="Login" action="Admin_ChkLogin.asp" method="post" target="_parent" onSubmit="return CheckForm();"
table width="300" border="0" align="center" cellpadding="5" cellspacing="0" class="border"
tr class="title"
td colspan="2" align="center" strong管理員登錄/strong/td
/tr
tr
td height="120" colspan="2" class="tdbg"
table width="250" border="0" cellspacing="8" cellpadding="0" align="center"
tr
td align="right"用戶名稱:/td
tdinput name="UserName" type="text" id="UserName2" size="23" maxlength="20"/td
/tr
tr
td align="right"用戶密碼:/td
tdinput name="Password" type="password" size="23" maxlength="20"/td
/tr
tr
td align="right"驗 證 碼:/td
tdinput name="CheckCode" size="15" maxlength="6"
1109 /td
/tr
tr
td colspan="2" div align="center"
input type="submit" name="Submit" value=" 確認(rèn) "
input name="reset" type="reset" id="reset" value=" 清除 "
br
/div/td
/tr
/table
/td
/tr
/table
p align="center"后臺管理頁面需要屏幕分辨率為 font color="#FF0000"strong1024*768/strong/font
或以上才能達(dá)到最佳瀏覽效果!br
需要瀏覽器為strongfont color="#FF0000" /font/strongfont color="#FF0000"strongIE5.5/strong/font
或以上版本才能正常運(yùn)行?。?!/p
/form
/body
/html
急求一個html成品網(wǎng)頁代碼、作業(yè)
您好,這樣的:
前提:隨便你在電腦里那個盤里新建文件夾,命名為:love,然后在這個文件夾里,分別建六個html文件,命名的話就像下面(如果真的不會,就在文件夾里新建六個txt記事本,建好之后分別重命名為以下的名稱。)。
首先,主頁為:index.html,另外五個網(wǎng)頁為:index1.html,index2.html,index3.html,index4.html,index5.html。
網(wǎng)頁1代碼:文件名:index1.html
html
head/head
body
pi love you!/p
/body
/html
網(wǎng)頁2代碼:文件名:index2.html
html
head/head
body
pi hate you!/p
/body
/html
網(wǎng)頁3代碼:文件名:index3.html
html
head/head
body
pi miss you!/p
/body
/html
網(wǎng)頁4代碼:文件名:index4.html
html
head/head
body
pi miss you too!/p
/body
/html
網(wǎng)頁5代碼:文件名:index5.html
html
head/head
body
pi love you too!/p
/body
/html
最終要的是主頁代碼:index.html,代碼如下
html
head/head
body
img src="XXX.JPG"/
a href="index1.html"網(wǎng)頁1/a
a href="index2.html"網(wǎng)頁2/a
a href="index3.html"網(wǎng)頁3/a
a href="index4.html"網(wǎng)頁4/a
a href="index5.html"網(wǎng)頁5/a
/body
/html
html網(wǎng)頁設(shè)計登錄頁面代碼作業(yè)的介紹就聊到這里吧,感謝你花時間閱讀本站內(nèi)容,更多關(guān)于html網(wǎng)頁制作登錄界面、html網(wǎng)頁設(shè)計登錄頁面代碼作業(yè)的信息別忘了在本站進(jìn)行查找喔。
掃描二維碼推送至手機(jī)訪問。
版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。