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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
<!DOCTYPE html> <head> <meta http-equiv= "Content-Type"
content= "text/html; charset=utf-8" />
<title>列表中的导航菜单的应用</title>
<script src= "jquery-2.1.0.js" ></script>
<style type= "text/css" >
body{
font-size:13px;
}
ul, li {
list-style-type:none;
padding:0px;
margin:0px;
}
.menu {
width:190px;
line-height:28px;
border-top:1px dashed
#00ffff;
}
.content {
padding-top:10px;
clear:left;
}
a {
text-decoration:none;
color: #666;
padding:10px;
}
.optn {
width:190px;
border:1px solid
#E5d1A1;
}
.optnFocus {
background-color: #fff;
font-weight:bold;
}
div {
padding:10px;
}
div img {
float:left;
padding-right:5px;
}
span {
padding-top:3px;
font-size:14px;
font-weight:bold;
float:left;
}
.tip {
width:190px;
border:1px solid
#ffa200;
position:absolute;
padding:10px;
background-color: #fff;
display:none;
}
.tip li {
line-height: 23px;
}
#sort {
position:absolute;display:none;
}
</style>
<script type= "text/javascript" >
$( function
() {
var
curY;
var
curH;
var
curW;
var
strY;
var
strX;
var
objL;
//设置当前位置数值 参数obj为当前对象名称
function
setInitValue(obj) {
curY = obj.offset().top;
curH = obj.height();
curW = obj.width();
strY = curY + (curH / 2) + "px" ;
strX = curW - 5 + "px" ;
}
//设置当前所选项的鼠标滑过事件
$( ".optn" ).mouseover( function
() {
objL = $( this );
setInitValue(objL);
var
allY = curY - curH + "px" ;
objL.addClass( "optnFocus" );
objL.next( "ul" ).show().css({ "top" : strY, "left" : strX });
})
.mouseout( function
() {
$( this ).removeClass( "optnFocus" );
$( this ).next( "ul" ).hide();
$( "#sort" ).hide();
})
$( ".tip" ).mousemove( function
() {
$( this ).show();
objL = $( this ).prev( "li" );
setInitValue(objL);
objL.addClass( "optnFocus" );
$( "#sort" ).show().css({ "top" : strY, "left" : strX });
})
.mouseout( function
() {
$( this ).hide();
$( this ).prev( "li" ).removeClass( "optnFocus" );
$( "#sort" ).hide();
})
});
</script>
</head> <body> <ul>
<li class = "menu" >
<div>
<img alt= "" src= "15.jpg"
/>
<span>电脑数码类产品</span>
</div>
<ul class = "content" >
<li class = "optn" ><a href= "#" >笔记本</a></li>
<ul class = "tip" >
<li><a href= "#" >笔记本1</a></li>
<li><a href= "#" >笔记本2</a></li>
<li><a href= "#" >笔记本3</a></li>
<li><a href= "#" >笔记本4</a></li>
<li><a href= "#" >笔记本5</a></li>
</ul>
<li class = "optn" ><a href= "#" >移动硬盘</a></li>
<ul class = "tip" >
<li><a href= "#" >移动硬盘1</a></li>
<li><a href= "#" >移动硬盘2</a></li>
<li><a href= "#" >移动硬盘3</a></li>
<li><a href= "#" >移动硬盘4</a></li>
<li><a href= "#" >移动硬盘5</a></li>
</ul>
<li class = "optn" ><a href= "#" >电脑软件</a></li>
<ul class = "tip" >
<li><a href= "#" >电脑软件1</a></li>
<li><a href= "#" >电脑软件2</a></li>
<li><a href= "#" >电脑软件3</a></li>
<li><a href= "#" >电脑软件4</a></li>
<li><a href= "#" >电脑软件5</a></li>
</ul>
<li class = "optn" ><a href= "#" >数码产品</a></li>
<ul class = "tip" >
<li><a href= "#" >数码产品1</a></li>
<li><a href= "#" >数码产品2</a></li>
<li><a href= "#" >数码产品3</a></li>
<li><a href= "#" >数码产品4</a></li>
<li><a href= "#" >数码产品5</a></li>
</ul>
</ul>
<img id= "sort"
src= "13.jpg"
/>
</li>
</ul>
</body> </html> |
相关文章
- 04-13资源在windows编程中的应用----菜单
- 04-13如何在纯Python应用程序包中更改OSX菜单栏中的应用程序名称?
- 04-13平板电脑的最近应用列表中的多个应用实例(android)
- 04-13android 调用微信QQ的其他应用打开列表中添加自己的应用,并且获取uri
- 04-13解决ElementUI导航栏中的vue-router在3.0版本以上重复点击菜单报错问题
- 04-13python的排序函数sort,sorted在列表排序和字典排序中的应用详解和举例
- 04-13如何使用菜单栏中的Apple图标在苹果Mac上强制退出应用程序?
- 04-13adb查看手机中已安装的应用列表
- 04-13资源在windows编程中的应用----菜单
- 04-13在MFC(微软标准库)中编写应用程序的菜单栏