2024-04-14 16:52:52 +08:00
|
|
|
<div class="site-btn__container">
|
2024-04-12 00:03:29 +08:00
|
|
|
<div>
|
|
|
|
<a href="https://leilukin.neocities.org/" target="_blank"><img src="/assets/leilukin/Leilukins-Hub-button.png" alt="Button of Leilukin's Hub" title="Leilukin's Hub"></a>
|
|
|
|
</div>
|
2024-04-15 13:00:39 +08:00
|
|
|
<textarea class="site-btn__textarea textarea-for-copy" rows="4"><a href="https://leilukin.neocities.org/" target="_blank"><img src="https://leilukin.neocities.org/assets/leilukin/Leilukins-Hub-button.png" alt="Button of Leilukin's Hub" title="Leilukin's Hub"></a></textarea>
|
2024-04-12 00:03:29 +08:00
|
|
|
<button class="copy-txt-btn">Copy HTML</button>
|
|
|
|
</div>
|
|
|
|
|
2024-04-14 16:52:52 +08:00
|
|
|
<style>
|
2024-04-12 00:03:29 +08:00
|
|
|
.site-btn__container {
|
|
|
|
display: flex;
|
|
|
|
gap: 1rem;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-btn__textarea {
|
|
|
|
width: 10rem;
|
2024-04-15 13:00:39 +08:00
|
|
|
height: 4rem;
|
2024-04-12 00:03:29 +08:00
|
|
|
font-size: 0.75rem;
|
|
|
|
background-color:black;
|
|
|
|
color: var(--clr-body-txt);
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy-txt-btn {
|
|
|
|
border: none;
|
|
|
|
background: var(--clr-link-btn-bg);
|
|
|
|
color: var(--clr-body-txt);
|
|
|
|
padding: 0.3rem 0.8rem;
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy-txt-btn:hover {
|
|
|
|
background: var(--clr-link-hover);
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2024-04-14 16:52:52 +08:00
|
|
|
<script defer>
|
2024-04-12 00:03:29 +08:00
|
|
|
document.querySelector(".copy-txt-btn").onclick = () => {
|
|
|
|
document.querySelector(".textarea-for-copy").select();
|
|
|
|
document.execCommand('copy');
|
|
|
|
}
|
|
|
|
</script>
|