-
Notifications
You must be signed in to change notification settings - Fork 56
/
main.js
66 lines (56 loc) · 1.18 KB
/
main.js
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
$(document).ready(function() {
//$('table>form').each(function(){
// var form=$(this).clone();
// var table=$(this).parent();
// $(this).remove();
// table.wrap(form);
//});
$(".item .label")
.popup()
;
$(".ui.info.message")
.fadeOut(10000)
;
//$("select").dropdown();
$(".right.menus").click(function() {
$(".right.menu").before("<div class='clearfix'></div>");
$(".right.menu").slideToggle("5000");
});
//语言 切换
$(".select-language").dropdown({
on: 'hover',
onChange: function (val) {
if(val!=''){
$.ajax({
url:'/CMD_API_CHANGE_INFO',
dataType: "html",
data:'language=1&lvalue='+val,
type:'POST',
success: function(data) {
location.reload();
}
});
}
}
});
//UI 切换
$(".select-ui").dropdown({
on: 'hover',
onChange: function (val) {
if(val!=''){
$(".ui.inverted.menu").removeClass("red orange yellow green teal blue purple").addClass(val);
}
}
});
$(".fixed.launch.button").click(function(){
$(".wide.right.aside")
.sidebar("toggle")
;
});
// 底部 捐赠按钮
$(".ui.button.alipay").click(function(){
$(".small.modal")
.modal("show")
;
});
});