Home_page.js
2.0 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* Created by Administrator on 2017/10/26.
*/
// Xabin
//应急事件处置
$(".message_scroll").click(function () {
EventClick();
eventHandle();
});
// 地图切换buttn-start
$(".map_change").click(function () {
$(this).addClass("map_change_chose");
$(this).siblings().removeClass("map_change_chose")
$(this).show()
$(this).siblings().hide()
})
$(".map_change_box").mouseenter(function () {
$(".map_change").show()
}).mouseleave(function () {
$(".map_change_chose").show()
$(".map_change_chose").siblings().hide()
})
// 地图切换buttn-end
$(".tab_msg").click(function () {
$(this).addClass("tab_msg_current");
$(this).siblings().removeClass("tab_msg_current")
})
$(".tab_msg01").click(function () {
$(".table1").show()
$(".table2").hide()
})
$(".tab_msg02").click(function () {
$(".table2").show()
$(".table1").hide()
})
$(".video_around").click(function () {
$(this).siblings().removeClass("video_around_chose")
$(this).addClass("video_around_chose")
})
$(".display_type_funct_sure").click(function () {
$(".display_box").hide()
})
$(".display_type_btn").click(function () {
$(".display_type_box").show()
$(".city_chose_box").hide()
})
$(".city_chose_btn").click(function () {
$(".city_chose_box").show()
$(".display_type_box").hide()
})
//轮播推送隐藏功能
$(".scroll_tool_outbox").mouseenter(function(){
$(".scroll_tool_outbox").addClass("scroll_tool_outbox_current")
});
$(".scroll_tool_outbox").mouseleave(function(){
$(".scroll_tool_outbox").removeClass("scroll_tool_outbox_current")
})
//轨迹回放功能激活
$(".search_guiji").click(function () {
$("#divRouteReview").show();
});
$(".close_playback").click(function () {
$(".trajectory_box").hide();
});
$("#btnBuffer").click(function () {
$("#divBufferSetting").show();
});
$(".total_chose_pl").click(function () {
$(".total_chose_box").show()
})
$(".total_chose_fr").click(function () {
$(".total_chose_box").hide()
})
// Xabin_end