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.
29 lines
662 B
29 lines
662 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=1000> |
|
<input id="startButton" type="button" value="Start!"> |
|
|
|
|
|
<div id="fileNames"> |
|
</div> |
|
|
|
</div> |
|
|
|
<img id="mainImage" src=""/> |
|
<img id="nextImage" src=""/> |
|
|
|
<script src="slideshow.js" ></script> |
|
</body> |
|
</html>
|
|
|