Glitzer als Feature: NVIDIA GeForce RTX 5090 Princess Edition – Mehr FPS durch Glitzer?

Das wäre doch auch mal schick:
1000089179.png

Vielleicht noch mit einer Öffnung am linken Lüfter 😄
 
Wenn Du diese Anzeige nicht sehen willst, registriere Dich und/oder logge Dich ein.
Kann ich meine Matrix tauschen :d?
 
Wo gibt es den Mauszeiger für Windows 11?
Ist ein bisschen Javascript Code, den ihr einfach in eure eigene Homepage einbauen könnt. Muss nur irgendwo im <body> tag eingefügt werden...
Sobald man die Seite verlässt, hat man also seinen normalen Mauszeiger wieder. Es gibt keinerlei Risiken und Nebenwirkungen, ihr müsst also nicht euren Arzt oder Apotheker fragen. (Sieht man übrigens auch auf den Werbebannern schon...)

Javascript:
<script>
(function () {
  const canvas = document.createElement('canvas');
  document.body.appendChild(canvas);
  canvas.style.cssText =
    'position:fixed;top:0;left:0;pointer-events:none;z-index:9999;';
  const ctx = canvas.getContext('2d');
  let W, H;
  let mx = -200, my = -200;
  let prevMx = -200, prevMy = -200;
  let particles = [];
  let idleFrame = 0;
  const IDLE_INTERVAL = 28;
  const COLORS = [
    '#FF69B4', '#FF1493', '#FFB6C1', '#FF85C2',
    '#FFA0D0', '#FFC0CB', '#FF82AB', '#FFAAD4',
    '#E75480', '#FFD1DC', '#FFE4E1', '#FF6EB4'
  ];
  const GOLD = ['#FFD700', '#FFF0A0', '#FFFACD'];
  // --- Canvas-Größe ---
  function resize() {
    canvas.width  = W = window.innerWidth;
    canvas.height = H = window.innerHeight;
  }
  resize();
  window.addEventListener('resize', resize);
  // --- Maus global verfolgen ---
  document.addEventListener('mousemove', function (e) {
    mx = e.clientX;
    my = e.clientY;
  });
  // --- Partikel erzeugen ---
  function spawnOne(x, y, tiny) {
    const angle = Math.random() * Math.PI * 2;
    const speed = tiny
      ? 0.1 + Math.random() * 0.3
      : 0.4 + Math.random() * 1.2;
    const isGold = Math.random() < 0.2;
    particles.push({
      x: x, y: y,
      vx: Math.cos(angle) * speed,
      vy: Math.sin(angle) * speed - (tiny ? 0.15 : 0.5),
      size: tiny ? 1 + Math.random() * 1.5 : 2 + Math.random() * 4,
      color: isGold
        ? GOLD[Math.floor(Math.random() * GOLD.length)]
        : COLORS[Math.floor(Math.random() * COLORS.length)],
      life: 1,
      decay: tiny
        ? 0.006 + Math.random() * 0.008
        : 0.012 + Math.random() * 0.018,
      twinkle: Math.random() * Math.PI * 2,
      shape: Math.random() > 0.5 ? 'star' : 'circle'
    });
  }
  function spawnParticles(x, y, moving) {
    if (moving) {
      const count = 4 + Math.floor(Math.random() * 4);
      for (let i = 0; i < count; i++) spawnOne(x, y, false);
    } else {
      spawnOne(x, y, true);
    }
  }
  // --- Stern zeichnen ---
  function drawStar(cx, cy, r, points) {
    ctx.beginPath();
    for (let i = 0; i < points * 2; i++) {
      const angle  = (i * Math.PI) / points - Math.PI / 2;
      const radius = i % 2 === 0 ? r : r * 0.4;
      const px = cx + radius * Math.cos(angle);
      const py = cy + radius * Math.sin(angle);
      if (i === 0) ctx.moveTo(px, py);
      else         ctx.lineTo(px, py);
    }
    ctx.closePath();
  }
  // --- Fee zeichnen ---
  function drawFairy(x, y) {
    const t = performance.now() / 1000;
    const fairyAngle = Math.sin(t * 3) * 0.18;
    ctx.save();
    ctx.translate(x, y);
    ctx.rotate(fairyAngle);
    // Flügel
    const wingFlap = Math.sin(t * 12) * 0.3;
    ctx.globalAlpha = 0.55;
    // Linker oberer Flügel
    ctx.save();
    ctx.rotate(-0.3 - wingFlap * 0.4);
    ctx.scale(1, 0.6);
    ctx.beginPath();
    ctx.ellipse(-10, -4, 13, 8, -0.5, 0, Math.PI * 2);
    ctx.fillStyle = 'rgba(255,182,213,0.7)';
    ctx.fill();
    ctx.strokeStyle = 'rgba(255,100,180,0.5)';
    ctx.lineWidth = 0.5;
    ctx.stroke();
    ctx.restore();
    // Linker unterer Flügel
    ctx.save();
    ctx.rotate(-0.1 - wingFlap * 0.3);
    ctx.scale(1, 0.5);
    ctx.beginPath();
    ctx.ellipse(-7, 4, 9, 5, 0.3, 0, Math.PI * 2);
    ctx.fillStyle = 'rgba(255,182,213,0.6)';
    ctx.fill();
    ctx.restore();
    // Rechter oberer Flügel
    ctx.save();
    ctx.rotate(0.3 + wingFlap * 0.4);
    ctx.scale(1, 0.6);
    ctx.beginPath();
    ctx.ellipse(10, -4, 13, 8, 0.5, 0, Math.PI * 2);
    ctx.fillStyle = 'rgba(255,182,213,0.7)';
    ctx.fill();
    ctx.strokeStyle = 'rgba(255,100,180,0.5)';
    ctx.lineWidth = 0.5;
    ctx.stroke();
    ctx.restore();
    // Rechter unterer Flügel
    ctx.save();
    ctx.rotate(0.1 + wingFlap * 0.3);
    ctx.scale(1, 0.5);
    ctx.beginPath();
    ctx.ellipse(7, 4, 9, 5, -0.3, 0, Math.PI * 2);
    ctx.fillStyle = 'rgba(255,182,213,0.6)';
    ctx.fill();
    ctx.restore();
    ctx.globalAlpha = 1;
    // Körper
    ctx.beginPath();
    ctx.ellipse(0, 0, 5, 8, 0, 0, Math.PI * 2);
    ctx.fillStyle = '#FF69B4';
    ctx.fill();
    // Kopf
    ctx.beginPath();
    ctx.arc(0, -10, 5, 0, Math.PI * 2);
    ctx.fillStyle = '#FFD1A4';
    ctx.fill();
    // Haare
    ctx.beginPath();
    ctx.arc(0, -13, 5, Math.PI, 0);
    ctx.fillStyle = '#FFD700';
    ctx.fill();
    // Augen
    ctx.fillStyle = '#4A2040';
    ctx.beginPath();
    ctx.arc(-2, -10, 1, 0, Math.PI * 2);
    ctx.fill();
    ctx.beginPath();
    ctx.arc(2, -10, 1, 0, Math.PI * 2);
    ctx.fill();
    // Zauberstab
    ctx.save();
    ctx.rotate(0.4);
    ctx.strokeStyle = '#C4A040';
    ctx.lineWidth = 1.2;
    ctx.beginPath();
    ctx.moveTo(5, -2);
    ctx.lineTo(16, -14);
    ctx.stroke();
    // Zauberstab-Stern (pulsierend)
    const ws = 3 + Math.sin(t * 6) * 0.8;
    drawStar(16, -14, ws, 5);
    ctx.fillStyle = '#FFD700';
    ctx.fill();
    ctx.restore();
    ctx.restore();
  }
  // --- Animationsloop ---
  function loop() {
    ctx.clearRect(0, 0, W, H);
    if (mx > -100) {
      const dx = mx - prevMx;
      const dy = my - prevMy;
      const speed = Math.sqrt(dx * dx + dy * dy);
      const moving = speed > 1.5;
      if (moving) {
        spawnParticles(mx, my, true);
        idleFrame = 0;
      } else {
        idleFrame++;
        if (idleFrame >= IDLE_INTERVAL) {
          spawnParticles(mx, my, false);
          idleFrame = 0;
        }
      }
      prevMx = mx;
      prevMy = my;
    }
    // Partikel aktualisieren & zeichnen
    for (let i = particles.length - 1; i >= 0; i--) {
      const p = particles[i];
      p.x  += p.vx;
      p.y  += p.vy;
      p.vy += 0.02;
      p.life    -= p.decay;
      p.twinkle += 0.2;
      if (p.life <= 0) { particles.splice(i, 1); continue; }
      ctx.save();
      ctx.globalAlpha = p.life * (0.7 + 0.3 * Math.sin(p.twinkle));
      ctx.fillStyle   = p.color;
      if (p.shape === 'star') {
        drawStar(p.x, p.y, p.size, 4);
        ctx.fill();
      } else {
        ctx.beginPath();
        ctx.arc(p.x, p.y, p.size * 0.7, 0, Math.PI * 2);
        ctx.fill();
      }
      ctx.restore();
    }
    // Fee zeichnen
    if (mx > -100) drawFairy(mx, my);
    requestAnimationFrame(loop);
  }
  loop();
})();
</script>
 
Ich will einen Besatz mit Diamanten!
Immer diese Geringverdiener hier im Forum. :)
 
Uiiiii, auch AMD plant eine spezielle Grafikkarte um die RAM Krise zu umschiffen. :bigok:


Bislang ungenutztes PCIe Feature "ASS" Adressierbarer System Speicher. Hammer.
 
ey ^^

Nice one !!!
Ich wusste gar nicht was kaputt ist - Monitor, Maus ?! ..meine Augen ?? :ROFLMAO:

Inspiration für nächstes mal - mehr rosa & pink !!
nikki.jpg
 
Absolut coole Website, toll was heute so geht. Ihr habt für den heutigen Tag euch so richtig ins Zeug gelegt. 🤩
Übrigens, die neueste Forschung hat festgestellt, dass die Pflanze Fikus Benjamina die WLAN-Strahlen signifikant verstärkt. Man weiß nur nicht wie die Mitochondrien das Signal potenzieren können. 🙃
 
Ich finde diesen Girls-Style echt Hammer und für die feminine Zielgruppe, diese auf den westlichen Märkten keine Berücksichtigung erfährt, ausgenommen von dem chinseisichen Markt, ist eine solche Grafikkarte echte gelungene Genugtuung.
Und ganz ehrlich... Auch als maskulines Individuum würde ich mir eine solche Grafikkarte anlachen, insofern sie denn mein jeweiliges Build stimmig ergänzen kann. Womöglich lassen sich auch "Kreative" von einem solchen Look blenden/ verführen.
 
Tja, PC-Hardware solchen Looks ist jetzt nichts Ungewöhnliches, wenn man mal einen Blick in Richtung "Fernen Osten" schweifen lasse.
AliExpress bietet Computerhardware in den verrücktesten Styles und Anime-Motiven an. Und HardwareDealz hat sich sogar schon einen solchen Girls-Trend-PC zusammengebaut, der am Ende auch verlost wurde.
 
Muss zugeben nach den ganzen Dubai, Gold etc. editionen hab ich rein beim Titel nicht an den ersten april gedacht. Super artikel!
 
Erste Reaktion bei mir war auch nice.
Cyberpunk2077 und StarWars special Edition gab es schon in der Vergangenheit. Warum dann nichtmal eine mit pinken Glitzer?
 
Mehr Glitzer und RGBäää für alle!!!
Zack hole ich mein Einhorn raus... Määä! shit das war das falsche. :ROFLMAO:
 
Zuletzt bearbeitet:
Hardwareluxx setzt keine externen Werbe- und Tracking-Cookies ein. Auf unserer Webseite finden Sie nur noch Cookies nach berechtigtem Interesse (Art. 6 Abs. 1 Satz 1 lit. f DSGVO) oder eigene funktionelle Cookies. Durch die Nutzung unserer Webseite erklären Sie sich damit einverstanden, dass wir diese Cookies setzen. Mehr Informationen und Möglichkeiten zur Einstellung unserer Cookies finden Sie in unserer Datenschutzerklärung.


Zurück
Oben Unten refresh