forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticleTypes.js
More file actions
67 lines (67 loc) · 1.35 KB
/
articleTypes.js
File metadata and controls
67 lines (67 loc) · 1.35 KB
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
var articleTypes = {
'Java' : // 名称
{
id : 'Java',// id
style : 'cursor:hand;',// 样式,
src : 'images/top_02.gif',// 图片
activeSrc : 'images/top2_02.gif',// 被激活时的图片
width : 98,
height : 35
},
'Java web' : {
id : 'Java web',
style : 'cursor:hand;',
src : 'images/top_03.gif',
activeSrc : 'images/top2_03.gif',
width : 98,
height : 35
},
'C#' : {
id : 'C#',
style : 'cursor:hand;',
src : 'images/top_04.gif',
activeSrc : 'images/top2_04.gif',
width : 65,
height : 35
},
'ASP.NET' : {
id : 'ASP.NET',
style : 'cursor:hand;',
src : 'images/top_05.gif',
activeSrc : 'images/top2_05.gif',
width : 98,
height : 35
},
'Visual Basic' : {
id : 'Visual Basic',
style : 'cursor:hand;',
src : 'images/top_06.gif',
activeSrc : 'images/top2_06.gif',
width : 113,
height : 35
},
'Visual C++' : {
id : 'Visual C++',
style : 'cursor:hand;',
src : 'images/top_07.gif',
activeSrc : 'images/top2_07.gif',
width : 113,
height : 35
},
'PHP' : {
id : 'PHP',
style : 'cursor:hand;',
src : 'images/top_08.gif',
activeSrc : 'images/top2_08.gif',
width : 65,
height : 35
},
'ASP' : {
id : 'ASP',
style : 'cursor:hand;',
src : 'images/top_09.gif',
activeSrc : 'images/top2_09.gif',
width : 65,
height : 35
}
};