This commit is contained in:
2025-03-07 18:12:52 +01:00
commit 683d152491
13 changed files with 984 additions and 0 deletions

38
example/img1/img1.html Normal file
View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="img1.css">
</head>
<body>
<img id="small" src="./img1.jpeg">
<div id="download">
<a id="large" href="./img1.png">
<img src="../icons/file.png">
<p>large</p>
</a>
<a id="raw" href="./img1.NEF">
<img src="../icons/file.png">
<p>raw</p>
</a>
</div>
<div id="exif">
<!-- Checkbox cachée qui contrôle l'affichage du texte -->
<input type="checkbox" id="dropdown" class="dropdown-checkbox">
<!-- Bouton -->
<label for="dropdown" class="dropdown-btn">Display exif data</label>
<div class="dropdown-text">
<pre>
<code>
ExifTool Version Number : 12.57
File Name : img1.NEF
Directory : ./example/img1
File Size : 5.7 MB
</code>
</pre>
</div>
</div>
</body>
</html>