每天学一个jquery插件-悬浮的菜单,供大家参考,具体内容如下
悬浮的菜单
又是一个很常见的效果,用上了a标签的一个常见的特性-锚点
效果如下
代码部分
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<!DOCTYPE html> < html > < head > < meta charset = "utf-8" > < title >悬浮的菜单</ title > < script src = "js/jquery-3.4.1.min.js" ></ script > < style > *{ margin: 0px; padding: 0px; user-select: none; } .item{ border: 1px solid lightgray; margin: 10px; height: 400px; border-radius: 5px; position: relative; } .head{ background-color: lightgray; height: 30px; display: flex; justify-content: flex-start; align-items: center; text-indent: 10px; position: absolute; top: 0px; width: 100%; } .fbox{ position: fixed; top: 20%; bottom: 20%; right: 20px; width: 150px; border: 1px solid lightgray; background-color: white; border-radius: 5px; } .main{ position: absolute; top: 30px; width: 100%; bottom: 0px; overflow: auto; } .main ul{ margin-left: 30px; } a{ color: gray; } </ style > </ head > < body > </ body > </ html > < script > $(document).ready(function(){ //添加测试dom,产生测试数据 var arr = []; for(var i = 0;i< 50 ;i++){ var id = 'id' +i; var $dom = $("<div class = 'item' id = '"+id+"' >< div class = 'head' >"+id+"</ div ></ div >"); $dom.appendTo($("body")); arr.push(id); } //调用方法 $.fmenu(arr); }) $.extend({ fmenu:function(arr){ $(".fbox").remove(); var $fbox = $("< div class = 'fbox' ></ div >"); var $head =$("< div class = 'head' >悬浮菜单</ div >"); var $main = $("< div class = 'main' ></ div >"); var $ul = $("< ul class = 'ul' ></ ul >") $ul.appendTo($main); $head.appendTo($fbox); $main.appendTo($fbox); $fbox.appendTo($("body")); arr.forEach(item=>{ var $li = $("< li >< a href = '#"+item+"' >"+item+"</ a ></ li >"); $li.appendTo($ul); }) } }) </ script > |
思路解释
- a标签不只是用来做超链接用的,其实还可以用来做下载文件的通道,也可以用来做文档位置的导航
- 就比如你的某一组属性是个在当前页面中查得到的,比如#id 、.class,按照选择器的方式来,用js来做就是拿到选择的这个路径然后获得他的文档高度,再让浏览器滚动到对应的高度。
- 而a.href直接等于选择的对象就可以直接锚点定位到对应的位置。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_44142582/article/details/115765498