jquery toolbar与网页浮动工具条具体实现代码

2020-05-18 08:41:19易采站长站整理

jquery 实现toolbar与网页浮动工具条jQuery实现方法
/*
基本StructureWe’ll更新index.php教程的HTML代码和对新闻联播style.css教程中的CSS代码。
我们建立了一个固定的面板(ID为工具栏组)两个浮动方面,我们将在第二个步骤与他们的图标和提示气泡(左),一个快速菜单和“隐藏按钮列表”(添加到隐藏工具栏)。
我们还可以期待一个“显示按钮”,它是有用的,当面板隐藏,我们要重新激活它。基于这个原因,我们添加id为toolbarbut div标签。
HTML和CSS代码
在这里,网页的基本结构。
html 代码

<div id=”toolbarbut”>
<!– hide button –>
</div>
<div id=”toolbar”> <!– toolbar container –>
<div class=”leftside”>
<!– all icons in floating left side –>
</div>
<div class=”rightside”> <!– all things in floating right side –>
<!– hide button –>
<!– quick menu list –>
</div>
</div>

css代码

div#toolbar, div#toolbarbut {
position: fixed; /* set fixed position for the bar */
bottom: 0px;
right: 0px;
z-index: 9999; /* keep the bar on top */
height: 36px;
background: url(images/bcktool.png);
/* CSS3 */
-moz-border-radius-topleft: 8px;
-khtml-border-radius-topleft: 8px;
-webkit-border-top-left-radius: 8px;
-moz-border-radius-topright: 8px;
-khtml-border-radius-topright: 8px;
-webkit-border-top-right-radius: 8px;
-moz-box-shadow: 0px 1px 10px #666, inset 1px 1px 0px #a4a4a4; /* inset creates a inner-shadow */
-khtml-box-shadow: 0px 1px 10px #666;
-webkit-box-shadow: 0px 1px 10px #666;
/* CSS3 end */
border-top: 1px solid #eee;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
}
div#toolbar {
width: 85%;
min-width: 700px; /* to limit the width when there is an excessive window resize */
margin: 0px auto; /* centered toolbar */
left: 0px;
}
div#toolbar a:hover {
border: none; /* fix ‘hover’ (a:hover {border-bottom: 1px dotted #666;}) border in the News Aggregator */
}
div#toolbarbut { /* div for the ‘hide status’ */
width: 60px;
height: 15px;
margin-right: 3%;
display: none;
}
.leftside {
float: left;
}
.rightside {
float: right;
}

显示/隐藏按钮现在,我们可以添加“显示按钮”的代码。

<div id=”toolbarbut”> <!– hide button –>
<span class=”showbar”><a href=”#”>show bar</a></span>
</div>

下面的属性相对CSS类。

span.showbar a { /* show button */
padding: 5px;
font-size: 10px;
color: #989898;
}

我们完成了后来的右侧,但现在我们可以添加“隐藏按钮”在ID为rightside分区,如图所示。