HTML
xxxxxxxxxx
1
<div class="container">
2
<section class="mx-auto my-5" style="max-width: 23rem;">
3
4
<div class="card map-card">
5
<div id="map-container-google-1" class="z-depth-1-half map-container" style="height: 500px">
6
<iframe src="https://maps.google.com/maps?q=manhatan&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0"
7
style="border:0" allowfullscreen></iframe>
8
</div>
9
<div class="card-body closed px-0">
10
<div class="button px-2 mt-3">
11
<a class="btn btn-floating btn-lg living-coral text-white float-end" style="margin-right: .75rem;"><i
12
class="fas fa-bicycle"></i></a>
13
</div>
14
<div class="bg-white px-4 pb-4 pt-3-5">
15
<h5 class="card-title h5 living-coral-text">Central Park Zoo</h5>
16
<div class="d-flex justify-content-between living-coral-text">
17
<h6 class="card-subtitle font-weight-light">A place to relax</h6>
18
<h6 class="font-small font-weight-light mt-n1">25 min</h6>
19
</div>
20
<hr>
21
<div class="d-flex justify-content-between pt-2 mt-1 text-center text-uppercase living-coral-text">
22
<div>
23
<i class="fas fa-phone fa-lg mb-3"></i>
24
<p class="mb-0">Call</p>
25
</div>
26
<div>
27
<i class="fas fa-cat fa-lg mb-3"></i>
28
<p class="mb-0">Love</p>
29
</div>
30
<div>
31
<i class="far fa-grin-beam-sweat fa-lg mb-3"></i>
32
<p class="mb-0">Smile</p>
33
</div>
34
</div>
35
<hr>
36
<table class="table table-borderless">
37
<tbody>
38
<tr>
39
<th scope="row" class="px-0 pb-3 pt-2">
40
<i class="fas fa-map-marker-alt living-coral-text"></i>
41
</th>
42
<td class="pb-3 pt-2">East 64th Street, New York, NY 10021, US</td>
43
</tr>
44
<tr class="mt-2">
45
<th scope="row" class="px-0 pb-3 pt-2">
46
<i class="far fa-clock living-coral-text"></i>
47
</th>
48
<td class="pb-3 pt-2"><span class="deep-purple-text me-2"> Closed</span> Opens 10 AM</td>
49
</tr>
50
<tr class="mt-2">
51
<th scope="row" class="px-0 pb-3 pt-2">
52
<i class="fas fa-cloud-moon living-coral-text"></i>
53
</th>
54
<td class="pb-3 pt-2">Sunny weather tomorrow</td>
55
</tr>
56
</tbody>
57
</table>
58
</div>
59
</div>
60
</div>
61
62
</section>
63
</div>
CSS
xxxxxxxxxx
1
body {
2
background-color: #f5f7fa;
3
}
4
5
.card.map-card .living-coral {
6
background-color: #fa7268;
7
}
8
9
.card.map-card .living-coral-text {
10
color: #fa7268;
11
}
12
13
.card.map-card .table th {
14
width: 2rem;
15
}
16
17
.card.map-card .pt-3-5 {
18
padding-top: 1.25rem;
19
}
20
21
.card.map-card .card-body {
22
position: absolute;
23
width: 100%;
24
height: 80%;
25
top: 20%;
26
overflow: hidden;
27
background-color: transparent;
28
-webkit-transition: all 1s;
29
-o-transition: all 1s;
30
transition: all 1s;
31
-webkit-border-radius: 0 !important;
32
border-radius: 0 !important;
33
}
34
35
.card.map-card .card-body.closed {
36
top: 100%;
37
height: 7.5rem;
38
margin-top: -7.5rem;
39
}
40
41
.card.map-card .map-container {
42
overflow: hidden;
43
padding-bottom: 56.25%;
44
position: relative;
45
height: 0;
46
}
47
48
.card.map-card .map-container iframe {
49
left: 0;
50
top: 0;
51
height: 100%;
52
width: 100%;
53
position: absolute;
54
}
55
56
.card.map-card .button .btn-floating {
57
margin-top: -1.5rem;
58
}
JS
xxxxxxxxxx
1
const card = document.querySelector('.map-card');
2
const cardBody = card.querySelector('.card-body')
3
4
card.addEventListener('click', () => {
5
cardBody.classList.toggle('closed')
6
})
Console errors: 0