-
Notifications
You must be signed in to change notification settings - Fork 0
/
shoulder-strain-or-sprain-symptoms.html
241 lines (234 loc) · 9.19 KB
/
shoulder-strain-or-sprain-symptoms.html
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html>
<head>
<title>Shoulder Strain or Sprain symptoms</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" type="text/css" href="assets/css/common.css"> -->
<link rel="stylesheet" type="text/css" href="assets/css/shoulder-strain-or-sprain-symptoms.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<body>
<!-- header section start -->
<header>
<div class="header_top">
<img class="back" src="assets/images/back.png">
<p>Health Check Questionnaire</p>
<img class="close" src="assets/images/close.png">
</div>
<div class="header_footer">
<div class="real_or"></div>
</div>
</header>
<!-- main section -->
<main class="main container">
<div class="main_content">
<div class="question_content">
<div class="flex-1">
<div>
<p>Do you have any pain at the front of the joint?</p>
<p>Select the one that most applies.</p>
</div>
<div>
<div class="grid-4">
<div>
<div class="q1_item">
<img src="assets/images/q31.png">
<p>Yes</p>
</div>
</div>
<div>
<div class="q1_item">
<img src="assets/images/q32.png">
<p>No</p>
</div>
</div>
<div>
<div class="q1_item">
<img src="assets/images/q33.png">
<p>Not Sure</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="question_content">
<div class="flex-1">
<div>
<p>Do you feel any tenderness when pressing on the area of the injury?</p>
<p>Select the one that most applies.</p>
</div>
<div>
<div class="grid-4">
<div>
<div class="q2_item">
<img src="assets/images/q31.png">
<p>Yes</p>
</div>
</div>
<div>
<div class="q2_item">
<img src="assets/images/q32.png">
<p>No</p>
</div>
</div>
<div>
<div class="q2_item">
<img src="assets/images/q33.png">
<p>Not Sure</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="question_content">
<div class="flex-1">
<div>
<p>Do you have any swelling that gets developed rapidly?</p>
<p>Select the one that most applies.</p>
</div>
<div>
<div class="grid-4">
<div>
<div class="q3_item">
<img src="assets/images/q31.png">
<p>Yes</p>
</div>
</div>
<div>
<div class="q3_item">
<img src="assets/images/q32.png">
<p>No</p>
</div>
</div>
<div>
<div class="q3_item">
<img src="assets/images/q33.png">
<p>Not Sure</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="question_content">
<div class="flex-1">
<div>
<p>Do you have any sort of inability to move the shoulder?</p>
<p>Select the one that most applies.</p>
</div>
<div>
<div class="grid-4">
<div>
<div class="q4_item">
<img src="assets/images/q31.png">
<p>Yes</p>
</div>
</div>
<div>
<div class="q4_item">
<img src="assets/images/q32.png">
<p>No</p>
</div>
</div>
<div>
<div class="q4_item">
<img src="assets/images/q33.png">
<p>Not Sure</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="fixed-bottom">
<div class="main_btn">
<button id="q_back" class="q_back" onclick="plusSlides(-1)">Back</button>
<button id="q_next" class="q_next" onclick="plusSlides(1)" disabled>Next</button>
</div>
</footer>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
var q_back = document.getElementById("q_back");
var q_next = document.getElementById("q_next");
//question1
var q1_items = document.getElementsByClassName("q1_item");
for (var i = 0; i < q1_items.length; i++) {
q1_items[i].addEventListener("click", function() {
for (var j = 0; j < q1_items.length; j++) {
q1_items[j].classList.remove("q1_item_active");
}
this.classList.add("q1_item_active");
q_next.disabled = false;
});
}
//question2
var q2_items = document.getElementsByClassName("q2_item");
for (var i = 0; i < q2_items.length; i++) {
q2_items[i].addEventListener("click", function() {
for (var j = 0; j < q2_items.length; j++) {
q2_items[j].classList.remove("q2_item_active");
}
this.classList.add("q2_item_active");
q_next.disabled = false;
});
}
//question3
var q3_items = document.getElementsByClassName("q3_item");
for (var i = 0; i < q3_items.length; i++) {
q3_items[i].addEventListener("click", function() {
for (var j = 0; j < q3_items.length; j++) {
q3_items[j].classList.remove("q3_item_active");
}
this.classList.add("q3_item_active");
q_next.disabled = false;
});
}
//question4
var q4_items = document.getElementsByClassName("q4_item");
for (var i = 0; i < q4_items.length; i++) {
q4_items[i].addEventListener("click", function() {
for (var j = 0; j < q4_items.length; j++) {
q4_items[j].classList.remove("q4_item_active");
}
this.classList.add("q4_item_active");
q_next.disabled = false;
});
}
/* Next & previous buttons */
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("question_content");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
slides[i].classList.remove("fade");
}
slides[slideIndex-1].style.display = "block";
slides[slideIndex-1].classList.add("fade");
}
/* disabling Next button */
q_next.addEventListener("click", function() {
if(this.disabled === false){
this.disabled = true;
}
});
/* enabling Next button */
q_back.addEventListener("click", function() {
if(q_next.disabled === true){
q_next.disabled = false;
}
});
</script>
</html>