mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
85 lines
1.7 KiB
HTML
85 lines
1.7 KiB
HTML
<div id="card" class="card">
|
|
<div class="content">
|
|
<div class="card-body">
|
|
<div class="code-container float-animation">
|
|
<span class="line"><span class="code-comment">// Código de ejemplo</span></span>
|
|
<span class="line"><span class="code-keyword">function</span> <span class="code-function">example</span>()</span>
|
|
<span class="line">{</span>
|
|
<span class="line indent"><span class="code-keyword">let</span> <span class="code-variable">message</span> = <span class="code-string">"Hello, World!"</span>;</span>
|
|
<span class="line indent"><span class="code-built-in">console</span>.<span class="code-method">log</span>(<span class="code-variable">message</span>);</span>
|
|
<span class="line">}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Jarol20cb - Tags: card, animated, console */
|
|
.card {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: #f9f9f9;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
}
|
|
|
|
.code-container {
|
|
background-color: #222;
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.line {
|
|
display: block;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
margin: 4px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.code-comment {
|
|
color: #5c6370;
|
|
}
|
|
|
|
.code-keyword {
|
|
color: #c678dd;
|
|
}
|
|
|
|
.code-function {
|
|
color: #61afef;
|
|
}
|
|
|
|
.code-variable {
|
|
color: #dcdcaa;
|
|
}
|
|
|
|
.code-string {
|
|
color: #98c379;
|
|
}
|
|
|
|
.indent {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
/* Animación */
|
|
@keyframes float {
|
|
0% {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
50% {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.float-animation {
|
|
animation: float 2s ease-in-out infinite;
|
|
}
|
|
|
|
</style>
|