-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (95 loc) · 4.17 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>domfx</title>
<style>
.hidden {
display: none;
}
.target-container {
padding: 10px;
background: grey;
}
.target {
background: blue;
color: white;
padding: 5px;
margin: 10px;
}
</style>
</head>
<body>
<div>
<h2>DOMFX.fade on visible element</h2>
<button class="fade-toggler" data-target=".fade-toggler-target">Fade</button>
<div class="target-container">
<div class="fade-toggler-target target">
Click the button to toggle the fade effect!
</div>
</div>
</div>
<div>
<h2>DOMFX.slide on visible element</h2>
<button class="slide-toggler" data-target=".slide-toggler-target">Slide</button>
<div class="target-container">
<div class="slide-toggler-target target">
Click the button to toggle the slide effect!
</div>
</div>
</div>
<div>
<h2>DOMFX.fade on element with display: none set via attribute or JS</h2>
<button class="fade-js-toggler" data-target=".fade-js-toggler-target">Fade</button>
<div class="target-container">
<div style="display: none;" class="fade-js-toggler-target target">
Click the button to toggle the fade effect!
</div>
</div>
</div>
<div>
<h2>DOMFX.slide on element with display: none set via attribute or JS</h2>
<button class="slide-js-toggler" data-target=".slide-js-toggler-target">Slide</button>
<div class="target-container">
<div style="display: none;" class="slide-js-toggler-target target">
Click the button to toggle the slide effect!
</div>
</div>
</div>
<div>
<h2>DOMFX.fade on element with display: none set in CSS</h2>
<button class="fade-css-toggler" data-target=".fade-css-toggler-target">Fade</button>
<div class="target-container">
<div class="fade-css-toggler-target target hidden">
Click the button to toggle the fade effect!
</div>
</div>
</div>
<div>
<h2>DOMFX.slide on element with display: none set in CSS</h2>
<button class="slide-css-toggler" data-target=".slide-css-toggler-target">Slide</button>
<div class="target-container">
<div class="slide-css-toggler-target target hidden">
Click the button to toggle the slide effect!
</div>
</div>
</div>
<script src="dist/domfx.js"></script>
<script>
(function () {
function setUpEffect (effect, name) {
var toggler = document.querySelector("." + name + "-toggler");
var target = document.querySelector(toggler.getAttribute("data-target"));
toggler.addEventListener("click", function () {
DOMFX[effect].toggle(target);
});
}
setUpEffect("fade", "fade");
setUpEffect("slide", "slide");
setUpEffect("fade", "fade-js");
setUpEffect("slide", "slide-js");
setUpEffect("fade", "fade-css");
setUpEffect("slide", "slide-css");
}());
</script>
</body>
</html>