找回密码
 注册
搜索
免费空间 免费域名 免费AI 老牌主机商首月仅1美分!27美元/年!Spaceship优惠码 Namecheap优惠码阿里云2核2G3M新老续费同享99元/年!
楼主: ickern

[主机资源] Lime-Serv德国10G免费空间

[复制链接]
发表于 2024-11-1 20:29:18 | 显示全部楼层
发表于 2024-11-1 21:47:00 | 显示全部楼层
维护了
发表于 2024-11-1 22:16:42 | 显示全部楼层
efc88ff45580620 发表于 2024-11-1 20:29
https://zzzu.eu.org/

https://s12.rr.nu

都不是我的

在线看XJJ 在这里下
https://hostloc.com/forum.php?mo ... =%E5%BC%80%E6%BA%90


随机图片
index.php
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4.     <title>School Girls</title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <style>
  8.         body {
  9.             margin: 0;
  10.             padding: 0;
  11.             font-size: 18px;
  12.             background-color: #333333;
  13.             color: #ffffff;
  14.             display: flex;
  15.             flex-direction: column;
  16.             min-height: 100vh;
  17.         }
  18.         .container {
  19.             flex-grow: 1;
  20.             display: flex;
  21.             flex-direction: column;
  22.             justify-content: center;
  23.             align-items: center;
  24.             padding: 20px;
  25.         }
  26.         .ccc {
  27.             background-color: #ff99cc;
  28.             box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  29.             border-radius: 5px;
  30.             padding: 10px;
  31.             width: 90%;
  32.             height: 88vh;
  33.             display: flex;
  34.             justify-content: center;
  35.             align-items: center;
  36.         }
  37.         .image-wrapper {
  38.             width: 100%;
  39.             height: 100%;
  40.             display: flex;
  41.             justify-content: center;
  42.             align-items: center;
  43.         }
  44.         .image-wrapper img {
  45.             max-width: 100%;
  46.             max-height: 100%;
  47.             object-fit: contain;
  48.         }
  49.         .footer {
  50.             margin-top: 20px;
  51.             text-align: center;
  52.         }
  53.         .button {
  54.             margin: 0;
  55.             padding: 10px 0;
  56.         }
  57.         .style1 {
  58.             background-color: #ff99cc;
  59.             border: none;
  60.             color: white;
  61.             padding: 15px 32px;
  62.             text-align: center;
  63.             text-decoration: none;
  64.             display: inline-block;
  65.             font-size: 16px;
  66.             margin: 4px 2px;
  67.             cursor: pointer;
  68.             border-radius: 5px;
  69.         }
  70.     </style>
  71.     <script>
  72.         function refreshPage() {
  73.             var img = document.getElementById('randomImage');
  74.             img.onload = function() {
  75.                 console.log("Image loaded successfully");
  76.             };
  77.             img.onerror = function() {
  78.                 console.error("Failed to load image");
  79.                 alert("Failed to load image. Please try again.");
  80.             };
  81.             img.src = 'get_image.php?t=' + new Date().getTime();
  82.         }

  83.         window.onload = refreshPage;
  84.     </script>
  85. </head>
  86. <body>
  87.     <div class="container">
  88.         <div class="ccc">
  89.             <div class="image-wrapper">
  90.                 <img id="randomImage" src="" alt="随机图片">
  91.             </div>
  92.         </div>
  93.         <div class="footer">
  94.             <div class="button">
  95.                 <button class="style1" onclick="refreshPage()">刷新图片</button>
  96.             </div>
  97.         </div>
  98.     </div>
  99. </body>
  100. </html>
复制代码


-----------------------------------------------------------------------
get_image.php

  1. <?php
  2. error_reporting(E_ALL);
  3. ini_set('display_errors', 1);

  4. function getRandomImage() {
  5.     $imageDir = __DIR__ . '/pic/'; // 使用绝对路径
  6.     $images = glob($imageDir . '*.{gif,jpg,png,avif,heic,heif,webp,jpeg}', GLOB_BRACE);
  7.    
  8.     if (empty($images)) {
  9.         error_log("No images found in directory: $imageDir");
  10.         return null;
  11.     }
  12.    
  13.     return $images[array_rand($images)];
  14. }

  15. $image = getRandomImage();

  16. if ($image && file_exists($image)) {
  17.     $imageInfo = getimagesize($image);
  18.     if ($imageInfo) {
  19.         header("Content-type: {$imageInfo['mime']}");
  20.         readfile($image);
  21.     } else {
  22.         error_log("Failed to get image info for: $image");
  23.         header("HTTP/1.0 500 Internal Server Error");
  24.         echo "Error processing image";
  25.     }
  26. } else {
  27.     error_log("Image not found: $image");
  28.     header("HTTP/1.0 404 Not Found");
  29.     echo "Image not found";
  30. }
  31. exit;
  32. ?>
复制代码




发表于 2024-11-1 22:52:48 | 显示全部楼层
happy12 发表于 2024-11-1 22:16
都不是我的

在线看XJJ 在这里下

图片文件夹是img还是image?
还是images?
发表于 2024-11-1 22:54:52 | 显示全部楼层
efc88ff45580620 发表于 2024-11-1 22:52
图片文件夹是img还是image?
还是images?

pic
  1. $imageDir = __DIR__ . '/pic/'; // 使用绝对路径
复制代码

评分

参与人数 1银币 +10 收起 理由
efc88ff45580620 + 10 很给力!

查看全部评分

发表于 2024-11-1 23:00:50 | 显示全部楼层
happy12 发表于 2024-11-1 22:16
都不是我的

在线看XJJ 在这里下

和这个代码很像

http://yaner.eweb.cz/photo/web1.php

评分

参与人数 1银币 +10 收起 理由
efc88ff45580620 + 10 赞一个!

查看全部评分

发表于 2024-11-1 23:03:25 | 显示全部楼层
yaner 发表于 2024-11-1 23:00
和这个代码很像

http://yaner.eweb.cz/photo/web1.php

系出同门?
发表于 2024-11-1 23:07:24 | 显示全部楼层
发表于 2024-11-1 23:17:08 | 显示全部楼层
本帖最后由 happy12 于 2024-11-1 23:18 编辑

是的
发表于 2024-11-1 23:21:02 | 显示全部楼层
happy12 发表于 2024-11-1 22:16
都不是我的

在线看XJJ 在这里下

好的  我也试了下

https://rz.f5.si/
您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|免费吧论坛

GMT+8, 2024-11-23 16:18 , Processed in 0.028341 second(s), 4 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表