iam working with dashing.io and i want to build a widget with a marquee. I did a marquee with css animation and html (http://jsfiddle.net/oLLzsyud/). It works with that, but it got it the widget like that: sccs:
.widget-marquee {
background: #004894;
$color_celeste_approx: #cccccc;
.marquee {
width: 200px;
margin: auto;
padding: 2px;
overflow: hidden;
white-space: nowrap;
border: solid 1px $color_celeste_approx;
animation: marquee 10s linear infinite;
&:hover {
animation-play-state: paused;
}
}
@keyframes marquee {
100% {
text-indent: -100%;
}
0% {
text-indent: 100%;
}
}
}
html:
<div class="marquee">
<span data-bind="stoer"></span>
</div>
In dashing it is shown like this and doesnt move
I didnt touch the coffee script. It is default from the widget generation.
I didnt see what is wrong and why it isnt working in dashing. Maybe someone here knows why it isnt working in dashing, but with css and html on a normal page.
Thank you for your answers.