-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (80 loc) · 2.98 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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Interactive publishing - interactive figures and text</title>
<style type="text/css">
body{
font-family: 'Source Sans Pro', sans-serif;
background-color:rgb(240,240,240);
}
div.header{
margin-top:10px;
margin-left:auto;
margin-right:auto;
padding-top:20px;
padding-left:20px;
width: 800px;
align-content: center;
height:150px;
border-width: 0px;
}
div.maintext{
color:darkslategray;
text-align:left;
max-width: 820px;
margin-left: auto;
margin-right: auto;
margin-top:10px;
}
iframe{
border-style:solid;
border-color:rgb(200,200,200);
border-width:1px;
}
p{
line-height: 1.5;
font-size: 14pt;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137588716-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-137588716-1');
</script>
</head>
<body>
<div class="maintext">
<h1>Interactive Publishing</h1>
<p>Overview web page for
<a href="https://github.com/nikolasibalic/Interactive-publishing">
Interactive-Publishing GitHub repository</a> containg
templates and tools for creating <a href="#interactive-figure">interactive
figures</a> and <a href="#interactive-text">interactive text</a>
for publishing in EPUB3/HTML5.</p>
<p> This simple page incorporates interactive figure and
interactive text. For source and tools for creating your own interactive
resources for publishing in HTML and EPUB3, please see
<a href="https://github.com/nikolasibalic/Interactive-publishing">repository</a>.
Created interactive elements can be incorporated in eBooks, blogs, web pages...
or just uploaded online and shared with links.</p>
<h2>Interactive text example</h2><a name="interactive-text"></a>
<p>Standalone interactive text can be seen
<a href="interactive_text.html">here</a> or as a part of the page bellow.
Purple elements can be changed by dragging or clicking, updating
calculated values given in green.</p>
<iframe src="interactive_text.html" width="820" height="200"></iframe>
<h2>Interactive figure example</h2><a name="interactive-figure"></a>
<p>Standalone interactive figure can be seen
<a href="interactive_figure.html">here</a> or as a part of the page bellow.</p>
<iframe src="interactive_figure.html" width="820" height="750"></iframe>
<p>Try creating your own interactive texts and figures for science teaching
and public communication. You can start by using templates from
<a href="https://github.com/nikolasibalic/Interactive-publishing">
Interactive-Publishing repository</a>.</p>
<p>© 2018 <a href="https://github.com/nikolasibalic/">Nikola Šibalić</a></p>
</div>
</body>