-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslide-in-down.html
92 lines (84 loc) · 3.68 KB
/
slide-in-down.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-page-transitions.min.css" />
</head>
<body>
<!-- Start your project here-->
<style>
html,
body,
header,
header section {
height: 100%;
}
/* These are the KEY styles - you can add them directly to any object you want in your project */
.fancy-border-radius {
border-radius: 36% 64% 22% 78% / 49% 67% 33% 51%;
/* These are ADDITIONAL styles - add them if you want an object exactly like in the demo above */
width: 390px;
height: 500px;
background: #f69d73;
background: -webkit-linear-gradient(to right,
#f9c9aa,
#f69d73);
background: linear-gradient(to right,
#f9c9aa,
#f69d73);
}
@media (min-width: 767px) {
.display-1 {
font-size: 7.7rem;
}
}
</style>
<footer class="pt-3">
<img src="https://mdbootstrap.com/img/illustrations/Halloween.jpg" class="img-fluid" alt="Halloween" id="animate-click"
data-mdb-animation="slide-out-down"
data-mdb-animation-start="onClick"
data-mdb-animation-reset="true"/>
<div style="background-color: #323284;">
<div class="container text-center">
<div class="row">
<div class="col-12 mt-5" data-mdb-toggle="animation"
data-mdb-animation-target="#animate-click">
<h1 class="display-2 font-weight-bold" style="color: #f38326; letter-spacing: 5px;">Clik here to move the Pumpkins</h1>
</div>
<div>
<div class="row my-5 pt-4">
<div class="col-md-6 col-lg-4">
<h2 class="mb-4 mb-lg-5" style="color: #fbba16;">| Trick or Treat</h2>
<p class="text-white px-lg-4 mb-5 mb-lg-0">Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia rem inventore ea aliquid, optio incidunt asperiores a consequatur animi consectetur error suscipit quis accusamus accusantium impedit quia alias sequi.</p>
</div>
<div class="col-md-6 col-lg-4">
<h2 class="mb-4 mb-lg-5" style="color: #fbba16;">| After Party</h2>
<p class="text-white px-lg-4 mb-5 mb-lg-0">Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia rem inventore ea aliquid, optio incidunt asperiores a consequatur animi consectetur error suscipit quis accusamus accusantium impedit quia alias sequi.</p>
</div>
<div class="col-md-12 col-lg-4">
<h2 class="mb-4 mb-lg-5" style="color: #fbba16;">| Cheers Witches</h2>
<p class="text-white px-lg-4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia rem inventore ea aliquid, optio incidunt asperiores a consequatur animi consectetur error suscipit quis accusamus accusantium impedit quia alias sequi.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>