-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
111 lines (80 loc) · 4.65 KB
/
scripts.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
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
$(document).ready(function() {
/*mobile menu*/
jQuery(".btnHamb").on( "click", function() {
var menuStatus = jQuery(".menuHamb").css("display");
if(menuStatus == "none"){
jQuery(".menuHamb").css("display","block");
}
else{jQuery(".menuHamb").css("display","none");}
});
/*scroll btn*/
jQuery(".btn-page-backtop").on( "click", function() {window.scrollTo(0, 0);} );
/*tabs servicos*/
jQuery("a#btn-sessaoServico01").on( "click", function() {
jQuery(this).css({'color' : 'rgba(75, 75, 75, 1)','font-weight' : '600',});
jQuery("a#btn-sessaoServico02, a#btn-sessaoServico03").css({'color' : 'rgba(160, 160, 160, 1)','font-weight' : '500',});
jQuery(".page-sessaoServico02, .page-sessaoServico03").css("display","none");jQuery(".page-sessaoServico01").css("display","flex");
} );
jQuery("a#btn-sessaoServico02").on( "click", function() {
jQuery(this).css({'color' : 'rgba(75, 75, 75, 1)','font-weight' : '600',});
jQuery("a#btn-sessaoServico01, a#btn-sessaoServico03").css({'color' : 'rgba(160, 160, 160, 1)','font-weight' : '500',});
jQuery(".page-sessaoServico01, .page-sessaoServico03").css("display","none");jQuery(".page-sessaoServico02").css("display","flex");
} );
jQuery("a#btn-sessaoServico03").on( "click", function() {
jQuery(this).css({'color' : 'rgba(75, 75, 75, 1)','font-weight' : '600',});
jQuery("a#btn-sessaoServico01, a#btn-sessaoServico02").css({'color' : 'rgba(160, 160, 160, 1)','font-weight' : '500',});
jQuery(".page-sessaoServico01, .page-sessaoServico02").css("display","none");jQuery(".page-sessaoServico03").css("display","flex");
} );
/*FAQ*/
jQuery("#pergunta-01 .btn-perguntasfrequentes-plus").on( "click", function() {
jQuery("#pergunta-desc01").css("display","flex");
jQuery("#pergunta-01 .btn-perguntasfrequentes-minus").css("display","block");
jQuery("#pergunta-01 .btn-perguntasfrequentes-plus").css("display","none");
} );
jQuery("#pergunta-01 .btn-perguntasfrequentes-minus").on( "click", function() {
jQuery("#pergunta-desc01").css("display","none");
jQuery("#pergunta-01 .btn-perguntasfrequentes-minus").css("display","none");
jQuery("#pergunta-01 .btn-perguntasfrequentes-plus").css("display","block");
} );
jQuery("#pergunta-02 .btn-perguntasfrequentes-plus").on( "click", function() {
jQuery("#pergunta-desc02").css("display","flex");
jQuery("#pergunta-02 .btn-perguntasfrequentes-minus").css("display","block");
jQuery("#pergunta-02 .btn-perguntasfrequentes-plus").css("display","none");
} );
jQuery("#pergunta-02 .btn-perguntasfrequentes-minus").on( "click", function() {
jQuery("#pergunta-desc02").css("display","none");
jQuery("#pergunta-02 .btn-perguntasfrequentes-minus").css("display","none");
jQuery("#pergunta-02 .btn-perguntasfrequentes-plus").css("display","block");
} );
jQuery("#pergunta-03 .btn-perguntasfrequentes-plus").on( "click", function() {
jQuery("#pergunta-desc03").css("display","flex");
jQuery("#pergunta-03 .btn-perguntasfrequentes-minus").css("display","block");
jQuery("#pergunta-03 .btn-perguntasfrequentes-plus").css("display","none");
} );
jQuery("#pergunta-03 .btn-perguntasfrequentes-minus").on( "click", function() {
jQuery("#pergunta-desc03").css("display","none");
jQuery("#pergunta-03 .btn-perguntasfrequentes-minus").css("display","none");
jQuery("#pergunta-03 .btn-perguntasfrequentes-plus").css("display","block");
} );
jQuery("#pergunta-04 .btn-perguntasfrequentes-plus").on( "click", function() {
jQuery("#pergunta-desc04").css("display","flex");
jQuery("#pergunta-04 .btn-perguntasfrequentes-minus").css("display","block");
jQuery("#pergunta-04 .btn-perguntasfrequentes-plus").css("display","none");
} );
jQuery("#pergunta-04 .btn-perguntasfrequentes-minus").on( "click", function() {
jQuery("#pergunta-desc04").css("display","none");
jQuery("#pergunta-04 .btn-perguntasfrequentes-minus").css("display","none");
jQuery("#pergunta-04 .btn-perguntasfrequentes-plus").css("display","block");
} );
jQuery("#pergunta-05 .btn-perguntasfrequentes-plus").on( "click", function() {
jQuery("#pergunta-desc05").css("display","flex");
jQuery("#pergunta-05 .btn-perguntasfrequentes-minus").css("display","block");
jQuery("#pergunta-05 .btn-perguntasfrequentes-plus").css("display","none");
} );
jQuery("#pergunta-05 .btn-perguntasfrequentes-minus").on( "click", function() {
jQuery("#pergunta-desc05").css("display","none");
jQuery("#pergunta-05 .btn-perguntasfrequentes-minus").css("display","none");
jQuery("#pergunta-05 .btn-perguntasfrequentes-plus").css("display","block");
} );
});
/*end document*/