-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.html
77 lines (68 loc) · 2.78 KB
/
models.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
<html>
<head>
<title>impress.js presentation</title>
<style>
.impress-supported .fallback-message {
display:none;
}
.big {
width: 600px;
text-align: center;
font-size: 60px;
line-height: 1;
}
.tiny {
width: 800px;
text-align: center;
font-size: 20px;
line-height: 1;
}
.pull-left {
text-align: left;
}
.step {
width: 900px;
padding: 40px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
font-family: 'Inika', serif;
font-size: 48px;
line-height: 1.5;
}
/* fade out inactive slides */
.step {
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-ms-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
.step:not(.active) {
opacity: 0.3;
}
</style>
</head>
<body class="impress-not-supported" >
<div class="fallback-message" >
<p>impress.js not supported</p>
</div>
<div id="impress" >
<div class="step big" data-x="1000" data-y="250"> Database Models </div>
<div class="step" data-rotate="90" data-x="1900" data-y="1100" style="background-image:url(dbsettings.png); background-repeat: no-repeat;height:400px"> </div>
<div class="step" data-rotate="90" data-x="1200" data-y="1100" style="background-image:url(desctable.png); background-repeat: no-repeat;height:400px"> </div>
<div class="step" data-x="3000" data-y="500" style="background-image:url(mvt.png); background-repeat: no-repeat; height: 800px"> </div>
<div class="step" data-x="3300" data-y="2000" data-scale="5" style="font-size: 80px" > URL Setup </div>
<div class="step" data-x="1200" data-y="2300" data-scale="2"> http://yoursite.com/index.html </div>
<div class="step" data-x="1200" data-y="2500" data-scale="2" style="font-size:25px"> url(r'^index.html$', index) </div>
<div class="step" data-x="-400" data-y="0" data-rotate="270" style="font-size: 60px"> What is a regex? </div>
<div class="step" data-x="1200" data-y="2600" data-scale="2" style="font-size:25px"> url(r'^person/$', person_index) </div>
<div class="step" data-x="1200" data-y="2700" data-scale="2" style="font-size:25px"> url(r'^person/(?P<band_id>\d+)/$', person_detail) </div>
<div class="step" data-x="1200" data-y="2800" data-scale="2" style="font-size:25px"> url(r'^animal/$', index) </div>
</div>
<script src = "js/impress.js" > </script>
<script> impress().init(); </script>
</body>
</html>