@groww-tech/react-charts
Version:
React charts library tailored as per Groww needs
65 lines (50 loc) • 830 B
CSS
.bar21animation {
stroke-dasharray: 1000px;
stroke-dashoffset: 1000px;
animation: move 2.5s linear;
animation-fill-mode: forwards;
}
@keyframes move {
100% {
stroke-dashoffset: 0;
}
}
.lg43Opacity3 {
opacity: 0.3;
}
.lg430LastPointBlinking {
opacity: 1;
animation: blinkingPoint 2s infinite;
}
@keyframes blinkingPoint {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.cc41Opacity3 {
opacity: 0.3;
}
.cc41Candle {
stroke-dasharray: 0;
stroke-dashoffset: 0;
-webkit-animation: candleanimation 5s linear;
animation: candleanimation 3s linear;
}
@-webkit-keyframes candleanimation {
to {
stroke-dashoffset: 0;
stroke-dasharray: 100%;
}
}
@keyframes candleanimation {
to {
stroke-dashoffset: 0;
stroke-dasharray: 100%;
}
}