iamはdashing.ioで作業しています。マーキーを使用してウィジェットを作成したいと考えています。私はcssアニメーションとhtml(http://jsfiddle.net/oLLzsyud/)でマーキーを行いました。それはそれで動作しますが、それはそれをそのようなウィジェットだ: SCCSを:Dashing.ioマーキーを使用したウィジェット
.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>
が、それはこの and doesnt move
のように示されています私はコーヒースクリプトに触れなかった。これはウィジェット生成からのデフォルトです。
私は何が間違っているのか、なぜそれがダッシュで働いていないのかを見ていませんでした。たぶん誰かがここでなぜそれがdashingで動作していない知っているが、通常のページにCSSとhtmlで。
ありがとうございました。