七夏 发表于 2025-1-1 09:00:16

2025 新年快乐!(可复制源代码)

<p><img src="https://www.3bbs.cn/index-diy/img.php?url=https://mmbiz.qpic.cn/sz_mmbiz_gif/iboghYD5pWrGpI8Q1ZlKtiabibj2gYdiaicKicpjAa53dC2uuenjDicMBHW2UOW6mzzggnVquR7G585HmtA9sRuCqUiaiaA/640?wx_fmt=gif&amp;from=appmsg&amp;tp=webp&amp;wxfrom=5&amp;wx_lazy=1&amp;wx_co=1" alt="图片" /></p>
<p>源代码</p>
<p>—</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot; /&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot; /&gt;
    &lt;title&gt;Document&lt;/title&gt;
    &lt;style&gt;
      body {
      margin: 0;
      overflow: hidden;
      background: radial-gradient(circle, #000428, #004e92); /* Dark night sky */
      height: 100vh;
      color: white;
      font-family: Arial, sans-serif;
      }


      #fireworksCanvas {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      }


      .message {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 10;
      }


      .message h1 {
      font-size: 3rem;
      margin: 0;
      }


      .message p {
      font-size: 1.5rem;
      }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;canvas id=&quot;fireworksCanvas&quot;&gt;&lt;/canvas&gt;
    &lt;div class=&quot;message&quot;&gt;
      &lt;h1 id=&quot;headline&quot;&gt;🎆 Happy New Year 2025! 🎆&lt;/h1&gt;
      &lt;p id=&quot;subtext&quot;&gt;Wishing you joy, health, and success in the coming year!&lt;/p&gt;
    &lt;/div&gt;
    &lt;script&gt;
            const canvas = document.getElementById(&quot;fireworksCanvas&quot;);
    const ctx = canvas.getContext(&quot;2d&quot;);


    // Set canvas size
    canvas.width = window.innerWidth;
    canvas.height = window.innerHeight;


    // Firework particles, stars, and meteors arrays
    const particles = [];
    const fireworks = [];
    const stars = [];
    const meteors = [];


    // Helper function to get a random number between min and max
    function random(min, max) {
      return Math.random() * (max - min) + min;
    }


    // Create stars for the background
    function createStars() {
      stars.length = 0; // Clear existing stars
      for (let i = 0; i &lt; 200; i++) { // Add 200 stars
      stars.push({
          x: random(0, canvas.width),
          y: random(0, canvas.height),
          size: random(0.5, 2), // Stars of different sizes
          brightness: random(0.5, 1), // Different brightness
          flickerSpeed: random(0.01, 0.03), // Speed of flickering
          flickerDirection: 1, // 1 for brightening, -1 for dimming
      });
      }
    }


    // Draw and update stars
    function drawStars() {
      stars.forEach((star) =&gt; {
      ctx.globalAlpha = star.brightness;
      ctx.beginPath();
      ctx.arc(star.x, star.y, star.size, 0, Math.PI * 2);
      ctx.fillStyle = &quot;white&quot;;
      ctx.fill();
      ctx.globalAlpha = 1;


      // Flickering effect
      star.brightness += star.flickerSpeed * star.flickerDirection;
      if (star.brightness &gt;= 1 || star.brightness &lt;= 0.5) {
          star.flickerDirection *= -1; // Reverse flicker direction
      }
      });
    }


    // Create meteors
    function createMeteor() {
      meteors.push({
      x: random(0, canvas.width),
      y: random(0, canvas.height / 2), // Meteors start in the top half of the canvas
      length: random(50, 100), // Shorter trail length
      speedX: random(2, 5), // Slower horizontal speed
      speedY: random(1, 3), // Slower vertical speed
      opacity: 0.8 // Lower starting opacity
      });
    }


    // Draw and update meteors
    function drawMeteors() {
      for (let i = meteors.length - 1; i &gt;= 0; i--) {
      const meteor = meteors;


      // Draw the meteor trail
      ctx.globalAlpha = meteor.opacity;
      ctx.beginPath();
      ctx.moveTo(meteor.x, meteor.y);
      ctx.lineTo(meteor.x - meteor.length, meteor.y + meteor.length);
      ctx.strokeStyle = &quot;rgba(255, 255, 255, 0.6)&quot;; // Softer white
      ctx.lineWidth = 1; // Thinner line
      ctx.stroke();
      ctx.globalAlpha = 1;


      // Update meteor position
      meteor.x += meteor.speedX;
      meteor.y += meteor.speedY;
      meteor.opacity -= 0.005; // Fade out slower


      // Remove the meteor if it is fully faded or off-screen
      if (meteor.opacity &lt;= 0 || meteor.x &gt; canvas.width || meteor.y &gt; canvas.height) {
          meteors.splice(i, 1);
      }
      }
    }


    // Firework particles class
    class Particle {
      constructor(x, y, color, angle, speed, decay) {
      this.x = x;
      this.y = y;
      this.color = color;
      this.angle = angle;
      this.speed = speed;
      this.decay = decay;
      this.alpha = 1;
      this.gravity = 0.02;
      }


      update() {
      this.speed *= this.decay;
      this.x += Math.cos(this.angle) * this.speed;
      this.y += Math.sin(this.angle) * this.speed + this.gravity;
      this.alpha -= 0.01;
      }


      draw() {
      ctx.globalAlpha = this.alpha;
      ctx.beginPath();
      ctx.arc(this.x, this.y, 3, 0, Math.PI * 2);
      ctx.fillStyle = this.color;
      ctx.fill();
      ctx.globalAlpha = 1;
      }
    }


    // Firework class
    class Firework {
      constructor(x, y, color) {
      this.x = x;
      this.y = y;
      this.color = color;
      this.particles = [];
      this.init();
      }


      init() {
      const particleCount = random(50, 100);
      for (let i = 0; i &lt; particleCount; i++) {
          const angle = random(0, Math.PI * 2);
          const speed = random(2, 5);
          const decay = random(0.9, 0.99);
          this.particles.push(new Particle(this.x, this.y, this.color, angle, speed, decay));
      }
      }


      update() {
      this.particles = this.particles.filter(particle =&gt; particle.alpha &gt; 0);
      this.particles.forEach(particle =&gt; particle.update());
      }


      draw() {
      this.particles.forEach(particle =&gt; particle.draw());
      }
    }


    // Create a firework
    function createFirework() {
      const x = random(0, canvas.width);
      const y = random(0, canvas.height / 2);
      const color = `hsl(${random(0, 360)}, 100%, 60%)`;
      fireworks.push(new Firework(x, y, color));
    }


    // Animation loop
    function animate() {
      ctx.fillStyle = &quot;rgba(0, 0, 0, 0.2)&quot;;
      ctx.fillRect(0, 0, canvas.width, canvas.height);


      // Draw stars
      drawStars();


      // Draw meteors
      drawMeteors();


      // Draw fireworks
      fireworks.forEach((firework, index) =&gt; {
      firework.update();
      firework.draw();
      if (firework.particles.length === 0) {
          fireworks.splice(index, 1);
      }
      });


      // Randomly create fireworks and meteors
      if (Math.random() &lt; 0.05) createFirework();
      if (Math.random() &lt; 2 / 3600) createMeteor();


      requestAnimationFrame(animate);
    }


    // Resize canvas on window resize
    window.addEventListener(&quot;resize&quot;, () =&gt; {
      canvas.width = window.innerWidth;
      canvas.height = window.innerHeight;
      createStars(); // Regenerate stars for the new canvas size
    });


    // Language detection and translations
    const translations = {
      en: {
      headline: &quot;🎆 Happy New Year 2025! 🎆&quot;,
      subtext: &quot;Wishing you joy, health, and success in the coming year!&quot;
      },
      de: {
      headline: &quot;🎆 Frohes neues Jahr 2025! 🎆&quot;,
      subtext: &quot;Wir wünschen Ihnen Freude, Gesundheit und Erfolg im kommenden Jahr!&quot;
      },
      ru: {
      headline: &quot;🎆 С Новым Годом 2025! 🎆&quot;,
      subtext: &quot;Желаем вам радости, здоровья и успеха в наступающем году!&quot;
      },
      es: {
      headline: &quot;🎆 ¡Feliz Año Nuevo 2025! 🎆&quot;,
      subtext: &quot;¡Te deseamos alegría, salud y éxito en el próximo año!&quot;
      },
      fr: {
      headline: &quot;🎆 Bonne année 2025 ! 🎆&quot;,
      subtext: &quot;Nous vous souhaitons joie, santé et succès pour l'année à venir !&quot;
      },
      it: {
      headline: &quot;🎆 Felice Anno Nuovo 2025! 🎆&quot;,
      subtext: &quot;Ti auguriamo gioia, salute e successo per l'anno prossimo!&quot;
      },
      pt: {
      headline: &quot;🎆 Feliz Ano Novo 2025! 🎆&quot;,
      subtext: &quot;Desejamos a você alegria, saúde e sucesso no próximo ano!&quot;
      },
      zh: {
      headline: &quot;🎆 新年快乐 2025! 🎆&quot;,
      subtext: &quot;祝愿您在新的一年里快乐、健康、成功!&quot;
      },
      ja: {
      headline: &quot;🎆 明けましておめでとうございます 2025! 🎆&quot;,
      subtext: &quot;新年が喜びと健康、成功に満ちた一年でありますように!&quot;
      },
      ko: {
      headline: &quot;🎆 새해 복 많이 받으세요 2025! 🎆&quot;,
      subtext: &quot;다가오는 한 해에 기쁨, 건강, 성공을 기원합니다!&quot;
      },
      nl: {
      headline: &quot;🎆 Gelukkig Nieuwjaar 2025! 🎆&quot;,
      subtext: &quot;Wij wensen je vreugde, gezondheid en succes in het komende jaar!&quot;
      },
      sv: {
      headline: &quot;🎆 Gott Nytt År 2025! 🎆&quot;,
      subtext: &quot;Vi önskar dig glädje, hälsa och framgång under det kommande året!&quot;
      },
      pl: {
      headline: &quot;🎆 Szczęśliwego Nowego Roku 2025! 🎆&quot;,
      subtext: &quot;Życzymy Ci radości, zdrowia i sukcesów w nadchodzącym roku!&quot;
      },
      ar: {
      headline: &quot;🎆 سنة جديدة سعيدة 2025! 🎆&quot;,
      subtext: &quot;نتمنى لكم السعادة والصحة والنجاح في العام القادم!&quot;
      },
      tr: {
      headline: &quot;🎆 Mutlu Yıllar 2025! 🎆&quot;,
      subtext: &quot;Yeni yılda mutluluk, sağlık ve başarı dileriz!&quot;
      },
      el: {
      headline: &quot;🎆 Καλή Χρονιά 2025! 🎆&quot;,
      subtext: &quot;Σας ευχόμαστε χαρά, υγεία και επιτυχία για τη νέα χρονιά!&quot;
      },
      cs: {
      headline: &quot;🎆 Šťastný nový rok 2025! 🎆&quot;,
      subtext: &quot;Přejeme vám radost, zdraví a úspěch v nadcházejícím roce!&quot;
      },
      hu: {
      headline: &quot;🎆 Boldog Új Évet 2025! 🎆&quot;,
      subtext: &quot;Boldogságot, egészséget és sikereket kívánunk az elkövetkező évre!&quot;
      },
      th: {
      headline: &quot;🎆 สวัสดีปีใหม่ 2025! 🎆&quot;,
      subtext: &quot;ขอให้คุณมีความสุข สุขภาพแข็งแรง และประสบความสำเร็จในปีที่กำลังจะมาถึง!&quot;
      }
    };


    const userLanguage = navigator.language.slice(0, 2); // Get the first two letters of the language code
    const message = translations || translations.en; // Default to English


    // Update the text content with the appropriate translation
    document.getElementById(&quot;headline&quot;).textContent = message.headline;
    document.getElementById(&quot;subtext&quot;).textContent = message.subtext;


    // Initialize stars and start the animation loop
    createStars();
    animate();
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
<p>*内容来源于网络,仅供学习</p>
页: [1]
查看完整版本: 2025 新年快乐!(可复制源代码)