@archival-iiif/viewer
v3.1.0
Published
IIIF viewer.
Downloads
35
Readme
This software is an open-source and web-based viewer for IIIF. It is focused on tree views but also works with single manifests.
The viewer was developed for the Archival IIIF Server, but also works with any other IIIF server.
Demo
https://iiif.sozialarchiv.ch
Features
- IIIF Image API 2 & 3
- IIIF Presentation API 2 & 3
- IIIF Authentication API
- IIIF Search API
- Image, audio, video, pdf and plain text support
- Audio and video transcripts
Download
https://github.com/archival-IIIF/viewer/releases
The viewer is also available as an npm package:
// with npm
npm -i @archival-iiif/viewer
// with yarn
yarn add @archival-iiif/viewer
Usage
<!DOCTYPE html>
<html>
<body class="aiiif-body">
<div id="root"></div>
<script type="text/javascript" src="path-to-viewer/archival-IIIF-viewer.min.js?v=x.y.z"></script>
<script type="text/javascript">
new ArchivalIIIFViewer({id: 'root'});
</script>
</body>
</html>
Options
Development
Installation
Building
yarn run build
ornpm run build