Compare commits
3 Commits
26d98a5319
...
e2c9666fab
Author | SHA1 | Date | |
---|---|---|---|
e2c9666fab | |||
6dc437a603 | |||
8fa7691f27 |
23
index.php
23
index.php
@ -8,8 +8,23 @@
|
|||||||
<meta property="og:description" content="Albums d'illustrations des waifus d'Esenjin.">
|
<meta property="og:description" content="Albums d'illustrations des waifus d'Esenjin.">
|
||||||
|
|
||||||
<link rel="shortcut icon" id="favicon" href="favicon.ico">
|
<link rel="shortcut icon" id="favicon" href="favicon.ico">
|
||||||
|
|
||||||
<link href='style.css' rel='stylesheet' type='text/css'>
|
<link href='style.css' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
|
||||||
|
<script>
|
||||||
|
jQuery(function(){
|
||||||
|
$(function () {
|
||||||
|
$(window).scroll(function () {
|
||||||
|
if ($(this).scrollTop() > 200 ) {
|
||||||
|
$('#scrollUp').css('right','10px');
|
||||||
|
} else {
|
||||||
|
$('#scrollUp').removeAttr( 'style' );
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -40,11 +55,13 @@ if(!empty($dossier));
|
|||||||
foreach($dossier as $lien=>$date)
|
foreach($dossier as $lien=>$date)
|
||||||
sort($fichier);
|
sort($fichier);
|
||||||
foreach($fichier as $lien) {
|
foreach($fichier as $lien) {
|
||||||
echo "<div align=\"center\"><img src=\"$dir_nom/$lien\" loading=\"lazy\"></img></div>\r
|
echo "<div align=\"center\"><a href=\"$dir_nom/$lien\" target=\"_blank\"><img src=\"$dir_nom/$lien\" loading=\"lazy\"></img></a></div>\r
|
||||||
<div align=\"center\"><p>🔍 <a href=\"http://saucenao.com/search.php?db=999&url=https://concepts.esenjin.xyz/teumbleur/v3/img/$lien\" target=\_blank>source</a></p></div>\r\r </br></br>";
|
<div align=\"center\"><p>🔍 <a href=\"http://saucenao.com/search.php?db=999&url=https://concepts.esenjin.xyz/teumbleur/v3/img/$lien\" target=\_blank>source</a></p></div>\r\r </br></br>";
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
<div id="scrollUp">
|
||||||
|
<a href="#top"><img src="top.png"/></a>
|
||||||
|
</div>
|
||||||
</br>
|
</br>
|
||||||
</body>
|
</body>
|
@ -17,7 +17,14 @@ div {
|
|||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 600px;
|
max-width: 600px;
|
||||||
height: auto;
|
height: auto;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#scrollUp {
|
||||||
|
position: fixed;
|
||||||
|
bottom : 10px;
|
||||||
|
right: -100px;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user