forked from digirati-co-uk/timeliner
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from IUBLibTech/a11y_fixes
Accessibility fixes
- Loading branch information
Showing
8 changed files
with
75 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" | ||
content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>IIIF Timeliner</title> | ||
<link rel="stylesheet" href="/assets/app.css"> | ||
</head> | ||
<body class=""> | ||
|
||
|
||
|
||
<div id="app"></div> | ||
|
||
|
||
|
||
<script type="text/javascript" src="/assets/app.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" | ||
content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>IIIF Timeliner - Home</title> | ||
<link rel="stylesheet" href="/assets/app.css"> | ||
</head> | ||
<body class=""> | ||
|
||
|
||
|
||
<div class="homepage container"> | ||
<h1>IIIF Timeliner</h1> | ||
<div class="panel"> | ||
<p> | ||
Timeliner is a reimplementation of Variations Audio Timeliner as a web | ||
application, using the IIIF Presentation API 3.0. As with the original | ||
version, developed as a part of the Variations Digital Music Library | ||
System, it is an audio annotation and analysis tool for creating and | ||
labeling bubble diagrams. These diagrams can be used to navigate music | ||
or other audio for detailed study. | ||
</p> | ||
<p> | ||
In addition to its use as a standalone application, the Timeliner is | ||
available as integrated feature within the successor to Variations, | ||
Avalon Media System. Avalon users can create new bubble diagrams | ||
directly from item pages within their Avalon instance and edit, share | ||
and copy timelines across all items in the repository. | ||
</p> | ||
<p> | ||
Please note that due to standard browser security, audio resources used | ||
with Timeliner must be set up for Cross-origin resource sharing (CORS). | ||
This is not necessarily the case for many resources on the web, and not | ||
all URLs for media files may work. | ||
</p> | ||
</div> | ||
<a href="/app/index.html" class="button">Go to Timeliner</a> | ||
</div> | ||
|
||
|
||
|
||
<script type="text/javascript" src="/assets/app.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
src/components/CurrentTimeIndicator/CurrentTimeIndicator.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
.current-time-indicator { | ||
color: #777; | ||
margin-right: 30px; | ||
&--error { | ||
color: darkred; | ||
} | ||
|
||
&__current-time { | ||
color: #000; | ||
} | ||
|
||
&__runtime { | ||
font-size: .85em; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters