-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
57 lines (55 loc) · 2.73 KB
/
script.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
$(function () {
var active = true;
$(".collapse.in").each(function () {
$(this).siblings(".panel-heading").find(".glyphicon").addClass("glyphicon-minus").removeClass("glyphicon-plus");
});
$('#buttonShowAll').click(function () {
if (active) {
active = false;
$(this).parent().find(".glyphicon").removeClass("glyphicon-plus").addClass("glyphicon-minus").css({ "color": "red" });
$('.panel-collapse').collapse('show');
$('.panel-title').attr('data-toggle', 'collapse');
$("#buttonShowAll").css({ "background": "linear-gradient(to right, #FF0000 0%,#FF0000 3%,#ffffff 0.5%,#ffffff 0.5%)" });
$("#buttonShowAll_Text").html("TÜM DETAYLARI GİZLE");
$('div.panel-default').css({
"border-radius": "10px",
"background": "linear-gradient(to right, #FF0000 0%,#FF0000 3%,#ffffff 0.5%,#ffffff 0.5%)",
"padding": "0px",
"margin": "3px"
});
} else {
active = true;
$(this).parent().find(".glyphicon").removeClass("glyphicon-minus").addClass("glyphicon-plus").css({ "color": "#07c0f3" });
$('.panel-collapse').collapse('hide');
$('.panel-title').attr('data-toggle', 'collapse');
$("#buttonShowAll").css({ "background": "linear-gradient(to right, #07c0f3 0%,#07c0f3 3%,#ffffff 0.5%,#ffffff 0.5%)" });
$("#buttonShowAll_Text").html("TÜM DETAYLARI GÖSTER");
$('div.panel-default').css({
"border-radius": "10px",
"background": "linear-gradient(to right, #07c0f3 0%,#07c0f3 3%,#ffffff 0.5%,#ffffff 0.5%)",
"padding": "0px",
"margin": "3px"
});
}
});
$('.collapse').on('show.bs.collapse', function () {
$(this).parent().find(".glyphicon").removeClass("glyphicon-plus").addClass("glyphicon-minus").css({ "color": "red" });
$(this).parent().css({
"border-radius": "10px",
"background": "linear-gradient(to right, #FF0000 0%,#FF0000 3%,#ffffff 0.5%,#ffffff 0.5%)",
"padding": "0px",
"margin": "3px"
});
if (active) {
$('#accordion .in').collapse('hide');
}
}).on('hide.bs.collapse', function () {
$(this).parent().find(".glyphicon").removeClass("glyphicon-minus").addClass("glyphicon-plus").css({ "color": "#07c0f3" });
$(this).parent().css({
"border-radius": "10px",
"background": "linear-gradient(to right, #07c0f3 0%,#07c0f3 3%,#ffffff 0.5%,#ffffff 0.5%)",
"padding": "0px",
"margin": "3px"
});
});
});