fast fertig
This commit is contained in:
parent
8a18effa31
commit
b65fc2be24
17
index.html
17
index.html
@ -73,6 +73,7 @@
|
||||
color: white;
|
||||
font-size: 1.5em; /* Textgröße anpassen */
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@ -91,7 +92,7 @@
|
||||
Creative Crafter</h1>
|
||||
<h3>Hey there! I'm Creative Crafter, your go-to gamer. On this website, I showcase my latest and greatest games.<br/>
|
||||
Note: All games are available in German <span>🇩🇪</span> only. Enjoy the adventure!</h3>
|
||||
<h2><img src="/icons/spiele.png" height="25vh">Programming</h2>
|
||||
<h2><img src="/icons/spiele.png" height="25vh">Categories</h2>
|
||||
|
||||
<!-- Button hinzufügen -->
|
||||
<button class="button" onclick="window.location.href='/programmieren/spiele/'">
|
||||
@ -100,6 +101,13 @@
|
||||
</div>
|
||||
</button>
|
||||
|
||||
<button class="button" onclick="window.location.href='/link-collection'">
|
||||
<div class="button-inner">
|
||||
<span class="button-text">Link Collection</span>
|
||||
</div>
|
||||
</button>
|
||||
|
||||
<footer><a href="mailto:info@creative-crafter.de">info@creative-crafter.de</a> | <i id="footer-text"></i></footer>
|
||||
<script>
|
||||
// Ladeanimation beim Laden der Seite anzeigen
|
||||
document.body.classList.add('loading');
|
||||
@ -108,6 +116,13 @@
|
||||
window.addEventListener('load', () => {
|
||||
document.body.classList.remove('loading');
|
||||
});
|
||||
function currentYear() {
|
||||
var currentYear = new Date().getFullYear();
|
||||
document.getElementById('footer-text').innerHTML = "2023-" + currentYear;
|
||||
}
|
||||
|
||||
// Ruf die Funktion auf, um den Footer zu aktualisieren
|
||||
window.addEventListener('load', currentYear);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
378
link-collection/br0tkasten/index.html
Normal file
378
link-collection/br0tkasten/index.html
Normal file
@ -0,0 +1,378 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Creative Crafter</title>
|
||||
<!-- Ladeanimation -->
|
||||
<script type="module" src="https://cdn.jsdelivr.net/npm/ldrs/dist/auto/quantum.js"></script>
|
||||
<!-- Stylesheet -->
|
||||
<style>
|
||||
@font-face { font-family: "Titillium"; src: url("/Titillium-Web-Regular.ttf"); }
|
||||
|
||||
body, html {
|
||||
font-family: 'Titillium';
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
background-color: #e6f7ff;
|
||||
}
|
||||
|
||||
h1, h2 { text-align: center; }
|
||||
|
||||
/* Ladeanimation */
|
||||
.loader-container {
|
||||
display: none;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgba(173, 216, 230, 0.8);
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.loading .loader-container { display: flex; }
|
||||
|
||||
/* Button-Style */
|
||||
.button-share {
|
||||
--white: #fff;
|
||||
cursor: pointer;
|
||||
background: linear-gradient(to bottom, #6e3bff, #7e51ff);
|
||||
color: #fff;
|
||||
border: 1px solid #af93ff;
|
||||
border-radius: 8px;
|
||||
position: relative;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
|
||||
box-shadow: 0 8px 10px -4px #503b89, 0 0 0 2px #562cce;
|
||||
font-size: 25px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 16px 32px; /* Doppelte Größe */
|
||||
border-radius: 8px;
|
||||
background: linear-gradient(to bottom, #007bff, #0056b3); /* Blau */
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.7);
|
||||
transition: all 0.2s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 20px; /* Abstand zum oberen Inhalt */
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.6);
|
||||
}
|
||||
|
||||
.button:active {
|
||||
box-shadow: 0 0px 1px rgba(0,0,0,0.8);
|
||||
transform: scale(0.995);
|
||||
}
|
||||
|
||||
.button-text {
|
||||
font-weight: 600;
|
||||
color: white;
|
||||
font-size: 1.5em; /* Textgröße anpassen */
|
||||
}
|
||||
|
||||
.icon path.bm {
|
||||
stroke-dasharray: 3;
|
||||
stroke-dashoffset: 3;
|
||||
stroke-width: 1px;
|
||||
transform: translateX(-23px) translateY(16px) scale(2) rotate(-44deg);
|
||||
}
|
||||
|
||||
.icon-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 8px 10px;
|
||||
background-color: #fff;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 -2px 4px 0 #c6c6c6, 0 3px 6px rgba(0, 0, 0, 0.25);
|
||||
text-align: center;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.icon-container .icon {
|
||||
width: 25px;
|
||||
height: 30px;
|
||||
stroke: #592cd6;
|
||||
margin-top: -2px;
|
||||
z-index: 4;
|
||||
/* Für das Teilen-Icon die Rotation entfernen */
|
||||
}
|
||||
|
||||
.content {
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 4px;
|
||||
gap: 16px;
|
||||
border-radius: 7px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.letters {
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.letters span {
|
||||
display: block;
|
||||
color: transparent;
|
||||
position: relative;
|
||||
left: 6px;
|
||||
animation: letterShow 1.2s ease backwards calc(var(--i) * 0.03s);
|
||||
}
|
||||
|
||||
.letters span::before, .letters span::after {
|
||||
content: attr(data-label);
|
||||
position: absolute;
|
||||
color: var(--white);
|
||||
text-shadow: -1px 1px 2px var(--purple-500);
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.letters span::before {
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
|
||||
.button:hover .letters span::before {
|
||||
animation: letterShow 0.7s ease calc(var(--i) * 0.03s);
|
||||
}
|
||||
|
||||
.button:hover .letters span::after {
|
||||
opacity: 1;
|
||||
animation: letterHide 0.7s ease calc(var(--i) * 0.03s);
|
||||
}
|
||||
|
||||
@keyframes letterShow {
|
||||
0% { transform: translateY(50%); opacity: 0; filter: blur(20px); }
|
||||
20% { transform: translateY(70%); opacity: 1; }
|
||||
50% { transform: translateY(-15%); opacity: 1; filter: blur(0); }
|
||||
100% { transform: translateY(0); opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes letterHide {
|
||||
0% { transform: translateY(0); opacity: 1; }
|
||||
100% { transform: translateY(-70%); opacity: 0; filter: blur(3px); }
|
||||
}
|
||||
|
||||
/* Modal-Stile */
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1000;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background-color: #fefefe;
|
||||
margin: 15% auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
width: 80%;
|
||||
max-width: 400px;
|
||||
text-align: center;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.close {
|
||||
color: #aaa;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.close:hover,
|
||||
.close:focus {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.social-icons a img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.social-icons a img:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Ladeanimation -->
|
||||
<div class="loader-container">
|
||||
<l-quantum size="90" speed="1.75" color="black"></l-quantum>
|
||||
</div>
|
||||
|
||||
<h1><img src="/icons/Controller.png" height="150"><br/>Creative Crafter</h1>
|
||||
<h1>Br0tkasten</h1>
|
||||
<div align='center'>
|
||||
<img src="/link-collection/br0tkasten/logo.png" width="250">
|
||||
</div>
|
||||
<br/>
|
||||
<div align='center'>
|
||||
<!-- Spielen-Button -->
|
||||
|
||||
<h2><a href="https://www.br0tkasten.de">Br0tkasten</a></h2>
|
||||
|
||||
</a>
|
||||
<br/><br/>
|
||||
<!-- Neuer Teilen-Button -->
|
||||
<button class="button-share" onclick="openSharePopup()">
|
||||
<div class="icon-container">
|
||||
<svg viewBox="0 0 24 24" fill="none" class="icon">
|
||||
<!-- Teilen-Icon -->
|
||||
<path d="M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7"></path>
|
||||
<polyline points="16 6 12 2 8 6"></polyline>
|
||||
<line x1="12" y1="2" x2="12" y2="15"></line>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="letters">
|
||||
<span data-label="S" style="--i:0;">S</span>
|
||||
<span data-label="h" style="--i:1;">h</span>
|
||||
<span data-label="a" style="--i:2;">a</span>
|
||||
<span data-label="r" style="--i:3;">r</span>
|
||||
<span data-label="e" style="--i:4;">e</span>
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Popup-Fenster zum Teilen -->
|
||||
<div id="shareModal" class="modal">
|
||||
<div class="modal-content">
|
||||
<span class="close" onclick="closeSharePopup()">×</span>
|
||||
<h2>Share with:</h2>
|
||||
<div class="social-icons">
|
||||
<a href="#" onclick="shareViaWhatsApp()">
|
||||
<img src="/icons/whatsapp.svg" alt="WhatsApp" />
|
||||
</a>
|
||||
<a href="#" onclick="shareViaPinterest()">
|
||||
<img src="/icons/pinterest.svg" />
|
||||
</a>
|
||||
<a href="#" onclick="shareViaTelegram()">
|
||||
<img src="/icons/telegram.svg" alt="Telegram" />
|
||||
</a>
|
||||
<a href="#" onclick="shareViaEmail()">
|
||||
<img src="/icons/email.svg" alt="E-Mail" />
|
||||
</a>
|
||||
<!-- Kopieren -->
|
||||
<a href="#" onclick="copyToClipboard()">
|
||||
<img src="/icons/copy.svg" />
|
||||
</a>
|
||||
<!-- Weitere Sharing-Optionen kannst du hier hinzufügen -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br/><br/><br/>
|
||||
|
||||
<!-- JavaScript für Ladeanimation und Teilen-Funktion -->
|
||||
<script>
|
||||
// Ladeanimation beim Laden der Seite anzeigen
|
||||
document.body.classList.add('loading');
|
||||
// Ladeanimation entfernen, wenn die Seite vollständig geladen ist
|
||||
window.addEventListener('load', () => {
|
||||
document.body.classList.remove('loading');
|
||||
});
|
||||
|
||||
// Funktion zum Öffnen des Popup-Fensters
|
||||
function openSharePopup() {
|
||||
document.getElementById("shareModal").style.display = "block";
|
||||
}
|
||||
|
||||
// Funktion zum Schließen des Popup-Fensters
|
||||
function closeSharePopup() {
|
||||
document.getElementById("shareModal").style.display = "none";
|
||||
}
|
||||
|
||||
// Teilen via WhatsApp
|
||||
function shareViaWhatsApp() {
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/');
|
||||
const url = 'https://api.whatsapp.com/send?text=' + text;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
// Teilen via Telegram
|
||||
function shareViaTelegram() {
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/');
|
||||
const url = 'https://t.me/share/url?url=' + text;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
function shareViaPinterest() {
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/');
|
||||
const url = 'https://pinterest.com/pin/create/button/?url=' + text;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
function shareViaPinterest() {
|
||||
const media = encodeURIComponent('URL_ZU_DEINEM_BILD'); // Ersetze dies durch den tatsächlichen Bild-Link
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/');
|
||||
const url = 'https://pinterest.com/pin/create/button/?url=' + text + '&media=' + media;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
// Teilen via E-Mail
|
||||
function shareViaEmail() {
|
||||
const subject = encodeURIComponent('Klick the Witch');
|
||||
const body = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/');
|
||||
window.location.href = 'mailto:?subject=' + subject + '&body=' + body;
|
||||
}
|
||||
|
||||
function copyToClipboard() {
|
||||
const text = 'Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/';
|
||||
navigator.clipboard.writeText(text).then(function() {
|
||||
alert('Text wurde in die Zwischenablage kopiert!');
|
||||
}, function(err) {
|
||||
alert('Fehler beim Kopieren in die Zwischenablage: ', err);
|
||||
});
|
||||
}
|
||||
|
||||
// Schließt das Popup bei Klick außerhalb des Inhalts
|
||||
window.onclick = function(event) {
|
||||
const modal = document.getElementById('shareModal');
|
||||
if (event.target == modal) {
|
||||
closeSharePopup();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
link-collection/br0tkasten/logo.png
Normal file
BIN
link-collection/br0tkasten/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
80
link-collection/index.html
Normal file
80
link-collection/index.html
Normal file
@ -0,0 +1,80 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Creative Crafter</title>
|
||||
<link href="" rel="stylesheet">
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "Titillium";
|
||||
src: url("/Titillium-Web-Regular.ttf");
|
||||
}
|
||||
body {
|
||||
font-family: 'Titillium';
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
background-color: #e6f7ff; /* Leichtes Blau */
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
h2 {
|
||||
text-align: center;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
text-align: center;
|
||||
}
|
||||
.category-container {
|
||||
width: 80%;
|
||||
max-width: 800px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.category {
|
||||
padding: 15px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 8px;
|
||||
margin: 10px 0;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
text-align: left;
|
||||
}
|
||||
.category-title {
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.category-description {
|
||||
font-size: 1em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.category a {
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.category a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><img src="/icons/Controller.png" height="150svh"><br/>Creative Crafter</h1>
|
||||
|
||||
<h1>Link Collection</h1>
|
||||
<div class="category-container">
|
||||
<div class="category">
|
||||
<div class="category-title">Br0tkasten</div>
|
||||
<div class="category-description">just my two cents</div>
|
||||
<a href="/link-collection/br0tkasten">Mehr erfahren</a>
|
||||
</div>
|
||||
<div class="category">
|
||||
<div class="category-title">Lego Tiny Plants</div>
|
||||
<div class="category-description">Build 9 miniature plants in terracotta pots, featuring various species, perfect for display and creative relaxation. Botanical joy!</div>
|
||||
<a href="/link-collection/lego-tiny-plants">Mehr erfahren</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
388
link-collection/lego-tiny-plants/index.html
Normal file
388
link-collection/lego-tiny-plants/index.html
Normal file
@ -0,0 +1,388 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Creative Crafter</title>
|
||||
<!-- Ladeanimation -->
|
||||
<script type="module" src="https://cdn.jsdelivr.net/npm/ldrs/dist/auto/quantum.js"></script>
|
||||
<!-- Stylesheet -->
|
||||
<style>
|
||||
@font-face { font-family: "Titillium"; src: url("/Titillium-Web-Regular.ttf"); }
|
||||
|
||||
body, html {
|
||||
font-family: 'Titillium';
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
background-color: #e6f7ff;
|
||||
}
|
||||
|
||||
h1, h2 { text-align: center; }
|
||||
|
||||
/* Ladeanimation */
|
||||
.loader-container {
|
||||
display: none;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgba(173, 216, 230, 0.8);
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.loading .loader-container { display: flex; }
|
||||
|
||||
/* Button-Style */
|
||||
.button-share {
|
||||
--white: #fff;
|
||||
cursor: pointer;
|
||||
background: linear-gradient(to bottom, #6e3bff, #7e51ff);
|
||||
color: #fff;
|
||||
border: 1px solid #af93ff;
|
||||
border-radius: 8px;
|
||||
position: relative;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
|
||||
box-shadow: 0 8px 10px -4px #503b89, 0 0 0 2px #562cce;
|
||||
font-size: 25px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 16px 32px; /* Doppelte Größe */
|
||||
border-radius: 8px;
|
||||
background: linear-gradient(to bottom, #007bff, #0056b3); /* Blau */
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.7);
|
||||
transition: all 0.2s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 20px; /* Abstand zum oberen Inhalt */
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.6);
|
||||
}
|
||||
|
||||
.button:active {
|
||||
box-shadow: 0 0px 1px rgba(0,0,0,0.8);
|
||||
transform: scale(0.995);
|
||||
}
|
||||
|
||||
.button-text {
|
||||
font-weight: 600;
|
||||
color: white;
|
||||
font-size: 1.5em; /* Textgröße anpassen */
|
||||
}
|
||||
|
||||
.icon path.bm {
|
||||
stroke-dasharray: 3;
|
||||
stroke-dashoffset: 3;
|
||||
stroke-width: 1px;
|
||||
transform: translateX(-23px) translateY(16px) scale(2) rotate(-44deg);
|
||||
}
|
||||
|
||||
.icon-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 8px 10px;
|
||||
background-color: #fff;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 -2px 4px 0 #c6c6c6, 0 3px 6px rgba(0, 0, 0, 0.25);
|
||||
text-align: center;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.icon-container .icon {
|
||||
width: 25px;
|
||||
height: 30px;
|
||||
stroke: #592cd6;
|
||||
margin-top: -2px;
|
||||
z-index: 4;
|
||||
/* Für das Teilen-Icon die Rotation entfernen */
|
||||
}
|
||||
|
||||
.content {
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 4px;
|
||||
gap: 16px;
|
||||
border-radius: 7px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.letters {
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.letters span {
|
||||
display: block;
|
||||
color: transparent;
|
||||
position: relative;
|
||||
left: 6px;
|
||||
animation: letterShow 1.2s ease backwards calc(var(--i) * 0.03s);
|
||||
}
|
||||
|
||||
.letters span::before, .letters span::after {
|
||||
content: attr(data-label);
|
||||
position: absolute;
|
||||
color: var(--white);
|
||||
text-shadow: -1px 1px 2px var(--purple-500);
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.letters span::before {
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
|
||||
.button:hover .letters span::before {
|
||||
animation: letterShow 0.7s ease calc(var(--i) * 0.03s);
|
||||
}
|
||||
|
||||
.button:hover .letters span::after {
|
||||
opacity: 1;
|
||||
animation: letterHide 0.7s ease calc(var(--i) * 0.03s);
|
||||
}
|
||||
|
||||
@keyframes letterShow {
|
||||
0% { transform: translateY(50%); opacity: 0; filter: blur(20px); }
|
||||
20% { transform: translateY(70%); opacity: 1; }
|
||||
50% { transform: translateY(-15%); opacity: 1; filter: blur(0); }
|
||||
100% { transform: translateY(0); opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes letterHide {
|
||||
0% { transform: translateY(0); opacity: 1; }
|
||||
100% { transform: translateY(-70%); opacity: 0; filter: blur(3px); }
|
||||
}
|
||||
|
||||
/* Modal-Stile */
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1000;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background-color: #fefefe;
|
||||
margin: 15% auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
width: 80%;
|
||||
max-width: 400px;
|
||||
text-align: center;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.close {
|
||||
color: #aaa;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.close:hover,
|
||||
.close:focus {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.social-icons a img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.social-icons a img:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Ladeanimation -->
|
||||
<div class="loader-container">
|
||||
<l-quantum size="90" speed="1.75" color="black"></l-quantum>
|
||||
</div>
|
||||
|
||||
<h1><img src="/icons/Controller.png" height="150"><br/>Creative Crafter</h1>
|
||||
<h1>Lego Tiny Plants</h1>
|
||||
<div align='center'>
|
||||
<img src="/link-collection/lego-tiny-plants/lego-pflanze.jpeg" width="250">
|
||||
</div>
|
||||
<br/>
|
||||
<div align='center'>
|
||||
<!-- Spielen-Button -->
|
||||
|
||||
<center>
|
||||
<h2>
|
||||
<a href="https://www.amazon.de/LEGO-10329-k%C3%BCnstliche-Collection-Terrakotta-Topf/dp/B01N6CH4YZ/ref=sr_1_2?crid=3PWMDFTZ8FXD1&dib=eyJ2IjoiMSJ9._75n0qO-YpajelaQ3F4sobWV0Wbr7ROWJ9sPnoTD6_Z9i_N5D64BBmcwPy_a1y-T88KqDuhlVDdyE1QpYo9n6h7aXF_kh5wsy7oMazuW90tQQfzssmCkcI9SyYV0CAQUMtgdRYTjljdAbfh-bzpCWUOqL2b2V3UOV2AKXGostIla1pe0gCXSFq2vaKRzOGTl5fMRr7pakjXiVQIqnf2_GlTjazRYVMa5VjUasdYcU2jCp5OILbzdRlbVIUxH2zHyi9mi-NHSP8a5IpSyC3AF5Zl_Q-K1BtYCdLBE3h0P4os.5o3cn-kk1WxUd6I0RQ4cxHys9Ub8KYDmk9X9XBJlB-w&dib_tag=se&keywords=lego%2Btiny%2Bplants&qid=1729366267&sprefix=tiny%2Blego%2Caps%2C115&sr=8-2&th=1">Amazon</a>
|
||||
</h2>
|
||||
</center>
|
||||
|
||||
<center>
|
||||
<h2>
|
||||
<a href="https://www.lego.com/de-de/product/tiny-plants-10329">LEGO® Online-shop</a>
|
||||
</h2>
|
||||
</center>
|
||||
|
||||
</a>
|
||||
<br/><br/>
|
||||
<!-- Neuer Teilen-Button -->
|
||||
<button class="button-share" onclick="openSharePopup()">
|
||||
<div class="icon-container">
|
||||
<svg viewBox="0 0 24 24" fill="none" class="icon">
|
||||
<!-- Teilen-Icon -->
|
||||
<path d="M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7"></path>
|
||||
<polyline points="16 6 12 2 8 6"></polyline>
|
||||
<line x1="12" y1="2" x2="12" y2="15"></line>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="letters">
|
||||
<span data-label="S" style="--i:0;">S</span>
|
||||
<span data-label="h" style="--i:1;">h</span>
|
||||
<span data-label="a" style="--i:2;">a</span>
|
||||
<span data-label="r" style="--i:3;">r</span>
|
||||
<span data-label="e" style="--i:4;">e</span>
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Popup-Fenster zum Teilen -->
|
||||
<div id="shareModal" class="modal">
|
||||
<div class="modal-content">
|
||||
<span class="close" onclick="closeSharePopup()">×</span>
|
||||
<h2>Share with:</h2>
|
||||
<div class="social-icons">
|
||||
<a href="#" onclick="shareViaWhatsApp()">
|
||||
<img src="/icons/whatsapp.svg" alt="WhatsApp" />
|
||||
</a>
|
||||
<a href="#" onclick="shareViaPinterest()">
|
||||
<img src="/icons/pinterest.svg" />
|
||||
</a>
|
||||
<a href="#" onclick="shareViaTelegram()">
|
||||
<img src="/icons/telegram.svg" alt="Telegram" />
|
||||
</a>
|
||||
<a href="#" onclick="shareViaEmail()">
|
||||
<img src="/icons/email.svg" alt="E-Mail" />
|
||||
</a>
|
||||
<!-- Kopieren -->
|
||||
<a href="#" onclick="copyToClipboard()">
|
||||
<img src="/icons/copy.svg" />
|
||||
</a>
|
||||
<!-- Weitere Sharing-Optionen kannst du hier hinzufügen -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br/><br/><br/>
|
||||
|
||||
<!-- JavaScript für Ladeanimation und Teilen-Funktion -->
|
||||
<script>
|
||||
// Ladeanimation beim Laden der Seite anzeigen
|
||||
document.body.classList.add('loading');
|
||||
// Ladeanimation entfernen, wenn die Seite vollständig geladen ist
|
||||
window.addEventListener('load', () => {
|
||||
document.body.classList.remove('loading');
|
||||
});
|
||||
|
||||
// Funktion zum Öffnen des Popup-Fensters
|
||||
function openSharePopup() {
|
||||
document.getElementById("shareModal").style.display = "block";
|
||||
}
|
||||
|
||||
// Funktion zum Schließen des Popup-Fensters
|
||||
function closeSharePopup() {
|
||||
document.getElementById("shareModal").style.display = "none";
|
||||
}
|
||||
|
||||
// Teilen via WhatsApp
|
||||
function shareViaWhatsApp() {
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/lego-tiny-plants/');
|
||||
const url = 'https://api.whatsapp.com/send?text=' + text;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
// Teilen via Telegram
|
||||
function shareViaTelegram() {
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/lego-tiny-plants/');
|
||||
const url = 'https://t.me/share/url?url=' + text;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
function shareViaPinterest() {
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/klick-the-witch/');
|
||||
const url = 'https://pinterest.com/pin/create/button/?url=' + text;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
function shareViaPinterest() {
|
||||
const media = encodeURIComponent('URL_ZU_DEINEM_BILD'); // Ersetze dies durch den tatsächlichen Bild-Link
|
||||
const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/lego-tiny-plants/');
|
||||
const url = 'https://pinterest.com/pin/create/button/?url=' + text + '&media=' + media;
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
// Teilen via E-Mail
|
||||
function shareViaEmail() {
|
||||
const subject = encodeURIComponent('Klick the Witch');
|
||||
const body = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/lego-tiny-plants/');
|
||||
window.location.href = 'mailto:?subject=' + subject + '&body=' + body;
|
||||
}
|
||||
|
||||
function copyToClipboard() {
|
||||
const text = 'Check out this fantastic game!https://test.creative-crafter.de/link-collection/lego-tiny-plants/';
|
||||
navigator.clipboard.writeText(text).then(function() {
|
||||
alert('Text wurde in die Zwischenablage kopiert!');
|
||||
}, function(err) {
|
||||
alert('Fehler beim Kopieren in die Zwischenablage: ', err);
|
||||
});
|
||||
}
|
||||
|
||||
// Schließt das Popup bei Klick außerhalb des Inhalts
|
||||
window.onclick = function(event) {
|
||||
const modal = document.getElementById('shareModal');
|
||||
if (event.target == modal) {
|
||||
closeSharePopup();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
link-collection/lego-tiny-plants/lego-pflanze.jpeg
Normal file
BIN
link-collection/lego-tiny-plants/lego-pflanze.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 137 KiB |
BIN
link-collection/lego-tiny-plants/lego-pflanze.png
Normal file
BIN
link-collection/lego-tiny-plants/lego-pflanze.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 MiB |
@ -64,7 +64,7 @@
|
||||
<body>
|
||||
<h1><img src="/icons/Controller.png" height="150svh"><br/>Creative Crafter</h1>
|
||||
|
||||
<h1>Meine Spiele</h1>
|
||||
<h1>My Games</h1>
|
||||
<div class="category-container">
|
||||
<div class="category">
|
||||
<div class="category-title">Klick the Witch</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user