forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
192 lines (172 loc) · 5.22 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ Section</title>
<style>
/* General styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
/* FAQ container styling */
.faq-container {
width: 100%;
max-width: 500px;
height: 600px; /* Fixed height */
border: 3px solid #4CAF50;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: white;
display: flex;
flex-direction: column;
padding: 20px;
box-sizing: border-box;
}
/* FAQ title styling */
.faq-title {
font-size: 1.8em;
text-align: center;
color: #4CAF50;
font-weight: bold;
border-bottom: 2px solid #4CAF50;
margin-bottom: 20px;
}
/* FAQ items container */
.faq-items {
display: flex;
flex-direction: column;
justify-content: space-between;
flex-grow: 1;
margin-top: 20px;
}
/* Individual FAQ item styling */
.faq-item {
width: 100%;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #e0e0e0;
overflow: hidden;
transition: all 0.4s ease;
margin-bottom: 20px; /* Spacing between FAQs */
}
.faq-question {
font-size: 1.1em;
padding: 12px 15px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s;
}
.faq-question:hover {
background-color: #d4d4d4;
}
/* FAQ answer styling */
.faq-answer {
padding: 0 15px;
box-sizing: border-box;
max-height: 0;
overflow: hidden;
background-color: #f9f9f9;
color: #333;
font-size: 1em;
transition: max-height 0.4s ease, padding 0.4s ease; /* Smooth padding transition */
}
/* Circular toggle symbol styling */
.toggle-symbol {
width: 25px;
height: 25px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2em;
color: white;
background-color: #4CAF50;
border-radius: 50%;
transition: transform 0.4s ease;
}
/* Rotate symbol when active */
.faq-item.active .toggle-symbol {
transform: rotate(45deg);
}
</style>
</head>
<body>
<div class="faq-container">
<!-- FAQ Title -->
<div class="faq-title">FAQ</div>
<!-- FAQ Items Wrapper -->
<div class="faq-items">
<!-- FAQ Item 1 -->
<div class="faq-item">
<div class="faq-question">
What is the purpose of this FAQ section?
<span class="toggle-symbol">+</span>
</div>
<div class="faq-answer">
This FAQ section provides answers to commonly asked questions in a visually appealing format.
It helps users find the information they need quickly and easily.
</div>
</div>
<!-- FAQ Item 2 -->
<div class="faq-item">
<div class="faq-question">
How do I toggle the answer?
<span class="toggle-symbol">+</span>
</div>
<div class="faq-answer">
Click on the question or the '+' symbol to expand or collapse the answer. You can view each answer individually and only one answer will be displayed at a time.
</div>
</div>
<!-- FAQ Item 3 -->
<div class="faq-item">
<div class="faq-question">
Can I add more questions?
<span class="toggle-symbol">+</span>
</div>
<div class="faq-answer">
Yes, you can add more questions by duplicating the .faq-item section in the HTML. Ensure that each question and answer fits well within the container for best results.
</div>
</div>
</div>
</div>
<script>
const faqItems = document.querySelectorAll(".faq-item");
faqItems.forEach(item => {
const question = item.querySelector(".faq-question");
const answer = item.querySelector(".faq-answer");
question.addEventListener("click", () => {
const isActive = item.classList.contains("active");
// Close any open item
faqItems.forEach(otherItem => {
otherItem.classList.remove("active");
otherItem.querySelector(".faq-answer").style.maxHeight = "0";
otherItem.querySelector(".faq-answer").style.padding = "0 15px";
});
// Toggle the current item with smooth transition
if (!isActive) {
item.classList.add("active");
answer.style.padding = "10px 15px"; // Add padding
// Calculate height dynamically and add buffer for extra space
const scrollHeight = answer.scrollHeight;
answer.style.maxHeight = (scrollHeight + 20) + "px"; // Buffer for extra space
} else {
// Close the current item smoothly
item.classList.remove("active");
answer.style.maxHeight = "0";
answer.style.padding = "0 15px"; // Collapse padding
}
});
});
</script>
</body>
</html>