-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (80 loc) · 3.56 KB
/
index.html
File metadata and controls
90 lines (80 loc) · 3.56 KB
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
<html class="no-js" lang="EN">
<head>
<meta charset="utf-8">
<title>Emory Center for Digital Scholarship Project Showcase</title>
<meta name="description"
content="Proof of concept for a variety of components used in Emory Center for Digital Scholarship projects and Digital Publishing in Humanities projects.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
.margin-v {
margin: 1rem 0;
}
</style>
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">ECDS Examples</a>
</nav>
<div class="jumbotron">
<h1 class="display-4">ECDS Project Showcase</h1>
<p class="lead">
This site hosts proof of concepts for a variety of projects supported by Emory Center for Digital Scholarship.
Examples are intended for development and demonstration purposes.
</p>
<hr class="my-4">
<p>Created by <a href="https://github.com/yl5682">Yang Li</a>, a Sr. Software Engineer and UI/UX Designer at Emory University.</p>
</div>
<div class="container">
<div class="row margin-v">
<div class="col">
<section>
<h2>An Interactive Dissolve Animation</h2>
<a href="vue-dissovle/vue-dissolve.html">View</a>
<p>
This is an interactive component that animates a poem fading out piece by piece. It was requested by Kayla
Kamibayashi
for her graduation thesis, where she intended to create a dissolving experience and allow users to
rediscover the lost
content.
This widget is built with Vue.js and Animate.css.
</p>
</section>
</div>
</div>
<div class="row margin-v">
<div class="col">
<section>
<h2>Apollo Flight Path</h2>
<a href="apollo-flight-path/index.html">View</a>
<p>
This is the homepage for Apollo 15 project that is designed and developed at Emory Center for Digital
Scholarship.
This homepage serves as a hub linking two Apollo 15 sites, an Omeka exhibition and a Readux digital book,
and offers an
overview to the Apollo 15 project as well as its context.
</p>
<p>
This homepage is built with UIKit, ScrollMagic.js, and customized SVG animation. Many credits to
<a href="https://github.com/jayvarner">Jay Varner</a>.
</p>
</section>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>