forked from marcolago/flowtime.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (81 loc) · 3.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
<!DOCTYPE HTML>
<!--[if IE 6]>
<html id="ie6" lang="en-US" class="ie ie6 lt-ie9">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en-US" class="ie ie7 lt-ie9">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en-US" class="ie ie8 lt-ie9">
<![endif]-->
<!--[if gte IE 9]>
<html lang="en-US" class="ie ie9">
<![endif]-->
<!--[if !(IE)]><!-->
<html lang="en-US" class="">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0 minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="author" content="marcolago">
<meta name="description" content="Flowtime.js is an open source framework for easily build HTML presentations or websites. It’s built with web standards in mind and on top of a solid full page grid layout powered by CSS3 hardware accelerated transition and comes with a complete set of Javascript API for deep customization.">
<title>Flowtime.js - Custom Fragment Animations Demo</title>
<link rel="stylesheet" href="../../assets/css/reset.css">
<link rel="stylesheet" href="../../css/flowtime.css">
<link rel="stylesheet" href="../../css/themes/default.css">
<link rel="stylesheet" href="css/custom-fragment.css">
</head>
<body class="">
<div class="flowtime">
<div class="ft-section" data-id="section-1">
<div class="ft-page">
<h1>Custom Fragment Animations Demo</h1>
<p>This presentation is a test for custom fragment animation.</p>
<p>Hit Down key to show the fragments</p>
<ul>
<li class="ft-fragment peek-a-boo">One</li>
<li class="ft-fragment peek-a-boo">Two</li>
<li class="ft-fragment peek-a-boo"><a href="http://threes.meteor.com/" target="_blank">Threes!</a></li>
<li class="ft-fragment peek-a-boo">Four</li>
<li class="ft-fragment peek-a-boo">Five</li>
</ul>
</div>
<div class="ft-page">
<h1>Ok. It Works!</h1>
<p>See the custom css in this example folder to check how it's made or check the <a href="https://github.com/marcolago/flowtime.js#customize-the-fragments-animation" target="_blank">documentation</a>.</p>
</div>
</div>
</div>
<script src="../../js/brav1toolbox.js"></script>
<script src="../../js/flowtime.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1228618-10']);
_gaq.push(['_trackPageview']);
_gaq.push(['_trackEvent', 'Flowtime', 'Landing', document.title]);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
//
//
// Configuration API test
Flowtime.showProgress(true);
// Flowtime.fragmentsOnSide(true);
// Flowtime.fragmentsOnBack(true);
// Flowtime.useHistory(false);
// Flowtime.slideInPx(true);
// Flowtime.sectionsSlideToTop(true);
// Flowtime.gridNavigation(false);
// Flowtime.useOverviewVariant(true);
// Flowtime.parallaxInPx(true);
// starts the application with configuration options
Flowtime.start();
</script>
<script>
// custom code here
</script>
</body>
</html>