Skip to content

Commit 3ebc64c

Browse files
committed
add draft
1 parent 9ecb1b2 commit 3ebc64c

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

singleton/presentation/index.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Circular Slides - impress.js</title>
6+
<style>
7+
body {
8+
background-image: url(//wmh.github.io/circular-slides-generator/static/img/noise.png);
9+
}
10+
11+
.step {
12+
position: relative;
13+
padding: 40px;
14+
margin: 0 auto;
15+
-webkit-box-sizing: border-box;
16+
-moz-box-sizing: border-box;
17+
-ms-box-sizing: border-box;
18+
-o-box-sizing: border-box;
19+
box-sizing: border-box;
20+
font-family: 'PT Serif', georgia, serif;
21+
font-size: 48px;
22+
line-height: 1.5;
23+
}
24+
25+
.slide {
26+
display: block;
27+
width: 900px;
28+
height: 700px;
29+
padding: 120px 60px;
30+
background-color: white;
31+
border: 1px solid rgba(0, 0, 0, .3);
32+
border-radius: 10px;
33+
box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
34+
color: rgb(102, 102, 102);
35+
text-shadow: 0 2px 2px rgba(0, 0, 0, .1);
36+
font-family: 'Open Sans', Arial, sans-serif;
37+
}
38+
39+
.credits, .credits h2 {
40+
padding-top: 0;
41+
}
42+
</style>
43+
</head>
44+
<body>
45+
<div id="impress">
46+
<div class="step slide" data-x="-450" data-y="-350" data-rotate="0" data-scale="0.7832222222222222"><q>My Slides</q>
47+
</div>
48+
<div class="step slide" data-x="557" data-y="-349" data-rotate="0" data-scale="1"><q>Slide 1</q></div>
49+
<div class="step slide" data-x="-138" data-y="607" data-rotate="72" data-scale="1"><q>Slide 2</q></div>
50+
<div class="step slide" data-x="-1264" data-y="241" data-rotate="144" data-scale="1"><q>Slide 3</q></div>
51+
<div class="step slide" data-x="-1264" data-y="-941" data-rotate="216" data-scale="1"><q>Slide 4</q></div>
52+
53+
<div class="step" data-x="0" data-y="0" data-scale="5"></div>
54+
</div>
55+
<script src="//cdnjs.cloudflare.com/ajax/libs/impress.js/0.5.3/impress.js"></script>
56+
</body>
57+
</html>

0 commit comments

Comments
 (0)