效果如图下,
文章阅读时间进度条预览例子-jquery步骤进度条例子">
在玛蜂窝发现这个提示功能挺好的, 参考这个思路写了一个功能.
HTML代码
代码如下 | 复制代码 |
<DIV id=head></DIV> <DIV id=box> <DIV id=boxbar> <DIV style="WIDTH: 1%" id=bar class=red></DIV> </DIV> </DIV> <DIV id=doc> <P>1</P><P>1</P><P>www.111cn.net</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P><P>1</P> </DIV> <DIV class=pl> |
CSS代码
代码如下 | 复制代码 |
*{margin:0; padding: 0;} body{ padding: 10px; } #box{ width:500px; position: fixed; height: 30px; top:0; display: none; } #boxbar{ position: relative; background: #ccc;height: 30px; } #boxbar div{ position: absolute; } .red{background: red; height: 15px; z-index: 2; top: 0; width:1%;} #head{ |
JS代码
代码如下 | 复制代码 |
$(function() { //游记内容高度 $(window).scroll(function () { }); |
只是简单DEOM, 待组件化处理.
时间: 2024-09-27 16:51:40