forked from dan-silver/ElementTransitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
36 lines (36 loc) · 930 Bytes
/
example.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/elementTransitions.css" />
<script src="js/elementTransitions.js"></script>
<style>
.et-wrapper {
width: 200px;
height: 200px;
}
.et-page:nth-child(1) {
background: red;
}
.et-page:nth-child(2) {
background: blue;
}
.et-page:nth-child(3) {
background: purple;
}
</style>
</head>
<body>
<div class="et-wrapper et-rotate span4" et-in="rotateCarouselBottomIn" et-out="rotateCarouselBottomOut ontop">
<div class="et-page">
<h2>Page 1</h2>
</div>
<div class="et-page">
<h2>Page 2</h2>
</div>
<div class="et-page">
<h2>Page 3</h2>
</div>
</div>
</body>
</html>