1. html中浮動窗口怎麼做啊就是一個小窗口飄在在頁面上那種
需要浮動的話,只需要在樣式上的position設置fixed即可。
比如:
<div style="position:fixed; z-index:1;">
</div>
這樣寫就浮動了,然後只需要用top、bottom、left、right來定位就行了
如果需要飄來飄去的浮動,需要配合js來完成,js可以去牛圖庫上找,裡面有很多插件,改下樣式就可以使用了。
2. H5頁面中如何實現點擊跳轉
你可以用意派Epub360在線H5頁面製作工具實現「點擊跳轉」,具體操作非常簡單。
1.添加文字或圖片按鈕(也就是你要點擊的對象)。
若在操作過程中遇到其他問題,你還可以在意派的教程中心搜索關鍵詞查找相應的教程,非常適合新手自學。
3. html 怎麼點擊一個按鈕彈出一個提示框
需要准備的材料分別有:電腦、瀏覽器、html編輯器。
1、首先,打開html編輯器,新建html文件,例如:index.html,輸入問題基礎代碼。
4. html點擊按鈕彈出窗口如何實現
實現原理:display:none/block;把代碼直接復制看效果
<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport"content="width=device-width,initial-scale=1.0">
<metahttp-equiv="X-UA-Compatible"content="ie=edge">
<title>Document</title>
<style>
*{
padding:0;
margin:0;
}
.firstBoxh5{
font-size:30px;
color:#000;
font-weight:700;
}
.firstBoxtable{
border:1pxsolid#E6E6E6;
margin:15px0px;
}
.firstBoxtablethead{
background:#E6E6E6;
}
.firstBoxtabletrtd{
width:150px;
text-align:center;
}
.firstBoxbutton{
width:100px;
height:40px;
background:#E6E6E6;
border:1pxsolid#C7D3E6;
text-align:center;
line-height:40px;
font-size:16px;
color:#000;
cursor:pointer;
}
#twoBox{
margin:20px0px0px;
background:#E6E6E6;
height:250px;
width:310px;
position:relative;
display:none;
}
#twoBox.twoBox_lever{
width:290px;
height:230px;
background:#fff;
border:1pxsolid#ccc;
border-radius:5px;
position:absolute;
right:0;
top:0;
left:0;
bottom:0;
margin:auto;
}
.twoBox_lever_two{
width:calc(100%-10px);
height:calc(100%-10px);
padding:5px;
}
.twoBox_lever_two.two_title{
width:100%;
height:40px;
background:#E6E6E6;
border:1pxsolid#ccc;
border-radius:5px;
}
.twoBox_lever_two.two_titlep{
font-size:16px;
color:#000;
line-height:40px;
padding-left:10px;
font-weight:700;
}
.twoBox_lever_twoform{
width:calc(100%-20px);
margin:10px;
border-bottom:1pxsolid#ccc;
height:calc(100%-100px);
}
.twoBox_lever_twoforminput{
height:20px;
line-height:20px;
padding:0px10px;
margin:5px;
cursor:pointer;
}
.twoBox_lever_two.two_footer{
height:40px;
text-align:right;
padding-right:10px;
}
.twoBox_lever_two.two_footerbutton{
height:30px;
background:#E6E6E6;
border:1pxsolid#C7D3E6;
text-align:center;
line-height:30px;
font-size:16px;
color:#000;
cursor:pointer;
}
.twoBox_lever_two.two_footerbutton:first-of-type{
width:120px;
padding:0px10px;
}
.twoBox_lever_two.two_footerbutton:last-of-type{
width:50px;
}
.show{
display:block!important;
}
</style>
</head>
<body>
<divstyle="margin:10px;">
<!--第一部分-->
<divclass="firstBox">
<h5>已有的用戶:</h5>
<table>
<thead>
<tr>
<th>名字</th>
<th>郵箱</th>
<th>密碼</th>
</tr>
</thead>
<tbody>
<tr>
<td>姓名</td>
<td>[email protected]</td>
<td>xingtuan</td>
</tr>
</tbody>
</table>
<buttonid="button">創建新用戶</button>
</div>
<!--第二部分-->
<divid="twoBox">
<divclass="twoBox_lever">
<divclass="twoBox_lever_two">
<divclass="two_title">
<p>創建新用戶</p>
</div>
<form>
<labelstyle="float:left">名字:
<inputtype="text"placeholder="請輸入名字">
</label>
<labelstyle="float:left">郵箱:
<inputtype="text"placeholder="請輸入郵箱">
</label>
<labelstyle="float:left">密碼:
<inputtype="password"placeholder="請輸入密碼">
</label>
</form>
<divclass="two_footer">
<button>創建一個用戶</button>
<button>取消</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
window.onload=function(){
document.getElementById("button").onclick=function(){
document.getElementById("twoBox").classList.add("show")
}
}
</script>
</html>
5. 如何使用HTML實現點擊一個鏈接打開新窗口
這個在網頁前端中非常常用,如果你JS 部分學好了 這個也是非常容易的了 下面是具體的實現方法。
【最基本的彈出窗口代碼】;其實代碼非常簡單:;
<SCRIPTLANGUAGE=";<!--;window.open('page.ht;-->;</SCRIPT>;因為這是一段javascript代碼,所以它們應;Window.open('page.ht;這一段代碼可以加入HTML的任意位置,加入到&l;【
【最基本的彈出窗口代碼】
其實代碼非常簡單:
<SCRIPTLANGUAGE="javascript">
<!--
window.open('page.html')
-->
</SCRIPT>
因為這是一段javascript代碼,所以它們應該放在<SCRIPT LANGUAGE ="javascript">標簽和</script>之間。<!--和-->是對一些版本低的瀏覽器起作用,在這些老瀏覽器中如果不支持javascript,不會將標簽中的代碼作為文本顯示出來。
Window.open ('page.html')用於控制彈出新的窗口page.html,如果page.html不與主窗口在同一路徑下,前面應寫明路徑,絕對路徑(http://)和相對路徑(../)均可。 用單引號和雙引號都可以,只是不要混用。
這一段代碼可以加入HTML的任意位置,加入到<head>和</head>之間也可以,位置越靠前執行越早,尤其是頁面代碼較長時,又想使頁面早點彈出就盡量往前放。
【經過設置後的彈出窗口】
下面再說一說彈出窗口外觀的設置。只要再往上面的代碼中加一點東西就可以了。
我們來定製這個彈出窗口的外觀、尺寸大小、彈出位置以適應該頁面的具體情況。
<SCRIPTLANGUAGE="javascript:>
<!--
window.open('page.html','newwindow','height=100,width=400,top=0,left=0,
toolbar=no,menubar=no,scrollbars=no,resizable=no,
location=no,status=no')
//寫成一行
-->
</SCRIPT>
參數解釋:
<SCRIPT LANGUAGE="javascript"> js腳本開始;
window.open 彈出新窗口的命令;
page.html 彈出新窗口的文件名;
newwindow 彈出窗口的名字(不是文件名),可用空 ″代替;
height=100 窗口高度;
top=0 窗口距離屏幕上方的像素值;
left=0 窗口距離屏幕左側的像素值;
toolbar=no 是否顯示工具欄,yes為顯示;
menubar,scrollbars 表示菜單欄和滾動欄;
resizable=no 是否允許改變窗口大小,yes為允許;
location=no 是否顯示地址欄,yes為允許;
status=no 是否顯示狀態欄內的信息(通常是文件已經打開),yes為允許;
</SCRIPT> js腳本結束。
【用函數控制彈出窗口】
下面是一個完整的代碼。
<html>
<head>
<scriptLANGUAGE="javascript">
<!--
functionopenwin(){
window.open("page.html","newwindow","height=100,width=400,toolbar=no,menubar=no,scrollbars=no,resizable=no,
location=no,status=no";)
//寫成一行
}
-->
</script>
</head>
<bodyonload="openwin()">
...任意的頁面內容...
</body>
</html>
這里定義了一個函數openwin(),函數內容就是打開一個窗口。在調用它之前沒有任何用途。怎麼調用呢?
方法一:<body onload="openwen()"> 瀏覽器讀頁面時彈出窗口;
方法二:<body onunload="openwen()"> 瀏覽器離開頁面時彈出窗口;
方法三:用一個連接調用:<a href="#" onclick="openwin()">打開一個窗口</a>
注意:使用的"#"是虛連接。
方法四:用一個按鈕調用:<input type="button" onclick="openwin()" value="打開窗口">
【主窗口打開文件1.htm,同時彈出小窗口page.html】
將如下代碼加入主窗口<head>區:
<scriptlanguage="javascript">
<!--
functionopenwin(){
window.open("page.html","","width=200,height=200";)
}
//-->
</script>
加入<body>區:
<a href="http://www.xsteach.com/register?spread_id=6065805" onclick="openwin()">open</a>即可。
【彈出的窗口之定時關閉控制】
下面我們再對彈出窗口進行一些控制,效果就更好了。如果我們再將一小段代碼加入彈出的頁面(注意是加入到page.html的HTML中,可不是主頁面中,否則…),讓它在10秒鍾後自動關閉是不是更酷了?
首先,將如下代碼加入page.html文件的<head>區:
<scriptlanguage="javascript">
functioncloseit(){
setTimeout("self.close()",10000)//毫秒
}
</script>
然後,再用<body onload="closeit()">這一句話代替page.html中原有的<BODY>這一句就可以了。(這一句話千萬不要忘記寫啊!這一句的作用是調用關閉窗口的代碼,10秒鍾後就自行關閉該窗口。)
【在彈出窗口中加上一個關閉按鈕】
<form>
<INPUTTYPE='BUTTON'value='關閉'onClick='window.close()'>
</form>
呵呵,現在更加完美了!
原來的HTML標准中可以用
<a href="document.html" target="_blank"> 打開一個新窗口</a>
但新的HTML標准嚴格上是不允許的。可以採用以下代碼:
<ahref="document.html"rel="external">打開一個新窗口</a>
javascript:
functionexternallinks(){
if(!document.getElementsByTagName)return;
varanchors=document.getElementsByTagName("a");
for(vari=0;i<anchors.length;i++){
varanchor=anchors[i];
if(anchor.getAttribute("href")&&
anchor.getAttribute("rel")=="external")
anchor.target="_blank";
}
}
window.onload=externallinks;
我們在使用<a>標簽時,常常會使用它的href屬性為 一段javasrcipt來實現某些功能。比如關閉一個窗口:<a href="javascript:windows.close();">,或者彈出一個新的窗口<a href="javascript:windows.open('url');">。這樣來實現窗口的操作。
當然也有人會用 onclick事件來實現打開或者關閉窗口<a href="#" onclick="windows.close();">, 打開新窗口<a href="#" onclick="windows.open(url);">。那麼他們之間到底有什麼區別呢?下面來好好分析一下
<a href="javascript:windows.close();">關閉窗口時,瀏覽器不會彈出窗口關閉的對話框,而<a href="#" onclick="windows.close();">,瀏覽器就會彈出窗口關閉的對話框。
<a href="javascript:windows.open('url');">打開一個新的窗口時,會使原來的窗口發生頁面回傳,從而導致 css樣式無效,如果是動態頁面的話還可能導致頁面變空白。所以還是慎用這個方法。<a href="#"
onclick="windows.close();">,是完全在客戶端執行的動作,頁面不會產生回傳,不會刷新頁面。
<li onclick="javascript:window.open
('鏈接')"> </li>
6. html5如何實現彈出提示框,並且伴隨遮罩層並且可以關閉彈出框
通過jquery的show()和hide()函數聯合使用,實現彈出窗口。
一、show()和hide()函數解析:
1、show() 方法顯示隱藏的被選元素。
注意:show() 適用於通過 jQuery 方法和 CSS 中 display:none 隱藏的元素(不適用於通過 visibility:hidden 隱藏的元素)。
2、hide() 方法隱藏被選元素。
這與 CSS 屬性 display:none 類似,但是隱藏的元素不會被完全顯示(不再影響頁面的布局)。
二、設計一個HTML頁面,包括一個簡單的彈出窗,和一個顯示按鈕。其中,調用了jquery的以上兩個函數。具體代碼如下:
7. 彈出窗口的html的代碼是怎麼寫的
1、最基本的彈出窗口代碼
< SCRIPT LANGUAGE="javascript">
< !--
window.open ("page.html")
-- >
< /SCRIPT>
window.open ("page.html") 用於控制彈出新的窗口page.html,如果page.html不與主窗口在同一路徑下,前面應寫明路徑,絕對路徑(http://)和相對路徑(../)均可。
2、經過設置後的彈出窗口
< 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=no, status=no")
->
< /SCRIPT>
< SCRIPT LANGUAGE="javascript"> js腳本開始;window.open 彈出新窗口的命令;"page.html" 彈出窗口的文件名;"newwindow" 彈出窗口的名字(不是文件名),非必須,可用空"代替;
3、用函數控制彈出窗口
< 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>
這里定義了一個函數openwin(),函數內容就是打開一個窗口。
4、同時彈出2個窗口
< 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=no, status=no")
window.open ("page2.html", "newwindow2", "height=100, width=100, top=100, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
}
-->
< /script>
為避免彈出的2個窗口覆蓋,用top和left控制一下彈出的位置不要相互覆蓋即可。
5、主窗口打開文件1.htm,同時彈出小窗口page.html
< script language="javascript">
< !--
function openwin() {
window.open("page.html","","width=200,height=200")
}
-->
< /script>