mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 14:50:02 +00:00
chore(catalog): remove internal source markers
This commit is contained in:
+14
-14
@@ -31,7 +31,7 @@
|
||||
transform: scale(1.6);
|
||||
transform-origin: center center;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart {
|
||||
.hf-catalog-animated-bar-chart {
|
||||
--hf-accent: var(--accent, #111827);
|
||||
--hf-ink: #111827;
|
||||
--hf-l1: rgba(17, 24, 39, 0.72);
|
||||
@@ -44,7 +44,7 @@
|
||||
color: var(--hf-ink);
|
||||
font-family: Inter, system-ui, sans-serif;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart {
|
||||
.hf-catalog-animated-bar-chart {
|
||||
width: 760px;
|
||||
min-height: 420px;
|
||||
border-radius: 28px;
|
||||
@@ -54,57 +54,57 @@
|
||||
display: grid;
|
||||
gap: 22px;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart header {
|
||||
.hf-catalog-animated-bar-chart header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: end;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart h3 {
|
||||
.hf-catalog-animated-bar-chart h3 {
|
||||
margin: 0;
|
||||
font-size: 34px;
|
||||
letter-spacing: -0.04em;
|
||||
font-weight: 700;
|
||||
color: #111827;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart header p {
|
||||
.hf-catalog-animated-bar-chart header p {
|
||||
margin: 6px 0 0;
|
||||
font-size: 16px;
|
||||
color: #6b7280;
|
||||
font-weight: 400;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart strong {
|
||||
.hf-catalog-animated-bar-chart strong {
|
||||
font-size: 54px;
|
||||
letter-spacing: -0.06em;
|
||||
color: var(--hf-accent);
|
||||
font-weight: 700;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart .bars {
|
||||
.hf-catalog-animated-bar-chart .bars {
|
||||
height: 210px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
align-items: end;
|
||||
gap: 14px;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart .bar {
|
||||
.hf-catalog-animated-bar-chart .bar {
|
||||
height: calc(var(--h) * var(--hf-grow, 1));
|
||||
border-radius: 14px 14px 5px 5px;
|
||||
background: var(--hf-l1);
|
||||
}
|
||||
.hf-remocn-animated-bar-chart .chart-footer {
|
||||
.hf-catalog-animated-bar-chart .chart-footer {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart svg {
|
||||
.hf-catalog-animated-bar-chart svg {
|
||||
width: 100%;
|
||||
height: 180px;
|
||||
overflow: visible;
|
||||
}
|
||||
.hf-remocn-animated-bar-chart path {
|
||||
.hf-catalog-animated-bar-chart path {
|
||||
color: var(--hf-l2);
|
||||
stroke-dasharray: 900;
|
||||
stroke-dashoffset: var(--hf-dash, 0);
|
||||
}
|
||||
.hf-remocn-animated-bar-chart .bar-labels {
|
||||
.hf-catalog-animated-bar-chart .bar-labels {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
text-align: center;
|
||||
@@ -125,7 +125,7 @@
|
||||
data-duration="5"
|
||||
>
|
||||
<div class="demo-frame">
|
||||
<div class="hf-remocn-animated-bar-chart">
|
||||
<div class="hf-catalog-animated-bar-chart">
|
||||
<header>
|
||||
<div>
|
||||
<h3>Animated Bar Chart</h3>
|
||||
@@ -162,7 +162,7 @@
|
||||
const tl = gsap.timeline({ paused: true });
|
||||
const startTime = 0.5;
|
||||
tl.fromTo(
|
||||
".hf-remocn-animated-bar-chart",
|
||||
".hf-catalog-animated-bar-chart",
|
||||
{ "--hf-grow": 0, "--hf-dash": 900 },
|
||||
{ "--hf-grow": 1, "--hf-dash": 0, duration: 1.2, ease: "power3.out" },
|
||||
startTime,
|
||||
|
||||
Reference in New Issue
Block a user