溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

html中如何實現(xiàn)固定在網(wǎng)頁右側(cè)的浮動層

發(fā)布時間:2021-09-29 17:38:21 來源:億速云 閱讀:178 作者:小新 欄目:移動開發(fā)

這篇文章主要介紹了html中如何實現(xiàn)固定在網(wǎng)頁右側(cè)的浮動層,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。


代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<style type="text/css">
body
{
margin:0px;
padding:0px;
margin-top:60px;
margin-bottom:60px;
}
#div_nav_zone_right
{
position:absolute;
float:right;
z-index:3;
width:120px;
height:100px;
right:0px;
top: 332px;
background-color:#999;
}
#div_nav_zone_right_bottom
{
position:absolute;
float:right;
z-index:3;
width:120px;
height:100px;
right:0px;
top: 532px;
background-color:#CCC;
}
#div_ul
{
position:fixed;
height:50px;
}
ul,li
{
margin:0px;
}
li
{
list-style:none;
}
</style>
<script type="text/javascript" src="js/jquery.js" ></script>
<script type="text/javascript">
$(function()
{
moveDiv(); //頁面初始化執(zhí)行
$(window).scroll(function(){
moveDiv();
moveRightBottomDiv();
});
});
//右側(cè)居中
function moveDiv()
{
var scrollTop = $(document).scrollTop(); //滾動條上端隱藏的高度
var clientHeight = $(window).height(); //網(wǎng)頁內(nèi)容區(qū)高度
//設(shè)置位置為
var hei = $("#div_nav_zone_right").css("height");
hei = hei.replace("px","");
var newPosY = scrollTop + (clientHeight-hei)/2;
$("#div_nav_zone_right").css("top",newPosY+"px");
}
//右側(cè)居下100像素
function moveRightBottomDiv()
{
var scrollTop = $(document).scrollTop(); //滾動條上端隱藏的高度
var clientHeight = $(window).height(); //網(wǎng)頁內(nèi)容區(qū)高度
//設(shè)置位置為
var hei = $("#div_nav_zone_right_bottom").css("height");
hei = hei.replace("px","");
var newPosY = clientHeight + scrollTop - hei - 100;
$("#div_nav_zone_right_bottom").css("top",newPosY+"px");
}
</script>
</head>
<body>
1 <br/>2 <br/>3 <br/>4 <br/>5 <br/>6 <br/>7 <br/>8 <br/>9 <br/>10 <br/>
<p>sd</p>
<p>f</p>
<p> </p>
<p>ads</p>
<p>f</p>
<p>ads</p>
<p>
<input type="button" name="button" id="button" value="提交" onclick="clk()" />
</p>
<p>ad</p>
<p>sf AS
D
as
d
SA
D
</p>
<p> </p>
<p>ads</p>
<p>f</p>
<p>ads</p>
sad
SA
D
a
d
A
D
a

<div id="div_nav_zone_right" >
<ul>
<li>邊欄菜單1 </li>
<li>邊欄菜單2 </li>
<li>邊欄菜單3 </li>
<li>邊欄菜單4 </li>
</ul>
</div>

<div id="div_nav_zone_right_bottom" >
<ul>
<li>邊欄菜單1 </li>
<li>邊欄菜單2 </li>
<li>邊欄菜單3 </li>
<li>邊欄菜單4 </li>
</ul>
</div>
</body>
</html>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“html中如何實現(xiàn)固定在網(wǎng)頁右側(cè)的浮動層”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI