local html page, that shows a slideshow of local files with a counter overlay
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
632 B

<!DOCTYPE html>
<html>
<head>
<title>countdown slideshow</title>
<link href="slideshow.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="config">
<h1>countdown slideshow Config:</h1>
<!-- with input that accepts multiple files, notice the multiple attribute-->
<input id="filePicker" type="file" multiple>
<input id="datePicker" type="datetime-local" name="targetDate">
<input id="delayPicker" type="number" name="delay" value=200>
<input id="startButton" type="button" value="Start!">
<div id="fileNames">
</div>
</div>
<img id="mainImage" src=""/>
<script src="slideshow.js" ></script>
</body>
</html>