365 lines
10 KiB
HTML
365 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Slopschild — Das Stoppschild für KI-Slop</title>
|
|
<meta name="description" content="Was du mir gerade geschickt hast, ist KI-Slop. Bitte hör auf.">
|
|
<meta property="og:title" content="SLOP. Bitte hör auf.">
|
|
<meta property="og:description" content="Was du mir gerade geschickt hast, wurde von einer KI generiert und ist wertlos weitergeleiteter Müll. Das nennt man Slop.">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://slopschild.de">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--red: #dc2626;
|
|
--red-dark: #991b1b;
|
|
--red-glow: #ef4444;
|
|
--bg: #0a0a0a;
|
|
--text: #e5e5e5;
|
|
--text-dim: #737373;
|
|
--white: #fafafa;
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: 'Space Grotesk', system-ui, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
-webkit-font-smoothing: antialiased;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
/* Pulsing red glow behind sign */
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 400px;
|
|
height: 400px;
|
|
background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
animation: pulse-glow 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse-glow {
|
|
0%, 100% { transform: scale(1); opacity: 0.6; }
|
|
50% { transform: scale(1.2); opacity: 1; }
|
|
}
|
|
|
|
/* Stop sign */
|
|
.stop-sign {
|
|
width: 260px;
|
|
height: 260px;
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 3rem;
|
|
animation: sign-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
cursor: default;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.stop-sign:hover {
|
|
transform: scale(1.05) rotate(-2deg);
|
|
}
|
|
|
|
@keyframes sign-enter {
|
|
0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
|
|
100% { transform: scale(1) rotate(0); opacity: 1; }
|
|
}
|
|
|
|
.stop-sign svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.4));
|
|
}
|
|
|
|
/* Message */
|
|
.message {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
z-index: 1;
|
|
animation: fade-up 0.8s ease both 0.3s;
|
|
}
|
|
|
|
@keyframes fade-up {
|
|
0% { transform: translateY(30px); opacity: 0; }
|
|
100% { transform: translateY(0); opacity: 1; }
|
|
}
|
|
|
|
.message h1 {
|
|
font-size: clamp(1.5rem, 5vw, 2.5rem);
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
line-height: 1.3;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.message h1 .red {
|
|
color: var(--red);
|
|
}
|
|
|
|
.message .subtitle {
|
|
font-size: 1.15rem;
|
|
color: var(--text-dim);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.scroll-hint {
|
|
position: absolute;
|
|
bottom: 2rem;
|
|
color: var(--text-dim);
|
|
font-size: 0.85rem;
|
|
animation: bounce 2s ease-in-out infinite 2s;
|
|
z-index: 1;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(8px); }
|
|
}
|
|
|
|
/* Content sections */
|
|
.content {
|
|
max-width: 640px;
|
|
margin: 0 auto;
|
|
padding: 4rem 2rem 6rem;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 4rem;
|
|
animation: fade-up 0.6s ease both;
|
|
}
|
|
|
|
.section h2 {
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
margin-bottom: 1.25rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.section h2 .icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
background: var(--red);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.section p, .section li {
|
|
font-size: 1.05rem;
|
|
line-height: 1.8;
|
|
color: var(--text);
|
|
}
|
|
|
|
.section ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.section li {
|
|
padding: 0.5rem 0;
|
|
padding-left: 1.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.section li::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
width: 6px;
|
|
height: 6px;
|
|
background: var(--red);
|
|
border-radius: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
/* Quote card */
|
|
.slop-quote {
|
|
background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.03));
|
|
border: 1px solid rgba(220, 38, 38, 0.2);
|
|
border-radius: 14px;
|
|
padding: 1.75rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.slop-quote p {
|
|
font-style: italic;
|
|
color: var(--text);
|
|
font-size: 1.1rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.slop-quote .attr {
|
|
margin-top: 0.75rem;
|
|
font-style: normal;
|
|
font-size: 0.85rem;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
/* What to do instead */
|
|
.instead-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.instead-grid { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
.instead-card {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
border-radius: 12px;
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.instead-card .label {
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.instead-card.dont .label { color: var(--red); }
|
|
.instead-card.do .label { color: #22c55e; }
|
|
|
|
.instead-card p {
|
|
font-size: 0.95rem;
|
|
color: var(--text-dim);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
text-align: center;
|
|
padding: 3rem 2rem;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
color: var(--text-dim);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
footer a {
|
|
color: var(--red);
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Grain overlay */
|
|
body::after {
|
|
content: '';
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section class="hero">
|
|
<div class="stop-sign">
|
|
<svg viewBox="0 0 260 260" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Octagon -->
|
|
<polygon points="130,8 222,38 252,130 222,222 130,252 38,222 8,130 38,38"
|
|
fill="#dc2626" stroke="#991b1b" stroke-width="4"/>
|
|
<!-- Inner border -->
|
|
<polygon points="130,22 212,48 240,130 212,212 130,240 48,212 20,130 48,48"
|
|
fill="none" stroke="#fafafa" stroke-width="4" opacity="0.9"/>
|
|
<!-- SLOP text -->
|
|
<text x="130" y="145" text-anchor="middle" font-family="'Space Grotesk', sans-serif"
|
|
font-size="72" font-weight="700" fill="#fafafa" letter-spacing="4">SLOP</text>
|
|
</svg>
|
|
</div>
|
|
<div class="message">
|
|
<h1>Was du mir geschickt hast,<br>ist <span class="red">KI-Slop</span>.</h1>
|
|
<p class="subtitle">Jemand hat dir diesen Link geschickt, weil du ungeprüften KI-Output weitergeleitet hast. Das ist nicht hilfreich — das ist Slop.</p>
|
|
</div>
|
|
<div class="scroll-hint">Was ist Slop? ↓</div>
|
|
</section>
|
|
|
|
<div class="content">
|
|
<section class="section">
|
|
<h2><span class="icon">?</span> Was ist Slop?</h2>
|
|
<p>Slop ist KI-generierter Inhalt, der ungeprüft weitergeleitet wird. Texte, Bilder, Videos — produziert von ChatGPT, Gemini, Claude oder anderen Modellen, ohne dass jemand geprüft hat, ob der Inhalt stimmt, Sinn ergibt oder irgendwem hilft.</p>
|
|
<div class="slop-quote">
|
|
<p>Spam war unerwünschte Werbung. Slop ist unerwünschter KI-Müll. Der Unterschied: Slop kommt von Leuten, die es gut meinen.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<h2><span class="icon">!</span> Warum ist das ein Problem?</h2>
|
|
<ul>
|
|
<li>KI halluziniert. Fakten, Zitate, Studien — oft frei erfunden.</li>
|
|
<li>Du machst dich zum Sprachrohr einer Maschine, ohne es zu merken.</li>
|
|
<li>Wer Slop weiterleitet, verschwendet die Zeit anderer Menschen.</li>
|
|
<li>Es entwertet echte Kommunikation und echtes Wissen.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<h2><span class="icon">→</span> Was du stattdessen tun kannst</h2>
|
|
<div class="instead-grid">
|
|
<div class="instead-card dont">
|
|
<div class="label">Nicht</div>
|
|
<p>ChatGPT fragen und die Antwort 1:1 weiterleiten</p>
|
|
</div>
|
|
<div class="instead-card do">
|
|
<div class="label">Besser</div>
|
|
<p>Selbst nachdenken, recherchieren, in eigenen Worten schreiben</p>
|
|
</div>
|
|
<div class="instead-card dont">
|
|
<div class="label">Nicht</div>
|
|
<p>KI-generierte Bilder/Videos als echt teilen</p>
|
|
</div>
|
|
<div class="instead-card do">
|
|
<div class="label">Besser</div>
|
|
<p>Kennzeichnen, was KI-generiert ist — oder es lassen</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<h2><span class="icon">♻</span> Keine Panik</h2>
|
|
<p>KI ist ein Werkzeug. Ein gutes sogar. Aber ein Werkzeug, dessen Output man prüft, bearbeitet und versteht — nicht blind weiterleitet. Du würdest auch keinen Wikipedia-Artikel ungelesen als deine Meinung verschicken.</p>
|
|
<p style="margin-top: 1rem;">Nächstes Mal: Lies es. Prüf es. Mach es zu deinem. Oder lass es.</p>
|
|
</section>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>slopschild.de — Zum Weiterleiten an Slop-Verbreiter.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|