0
首先我有一個HTML勞斯萊斯:如何創建一個簡單,流暢的品牌?
<marquee behavior="scroll" direction="left" scrollamount="1">
但它不光滑,速度太慢了。
更高的滾動數 - 平滑度越低。
然後我試圖利用CSS
marquee{
width: 200px; height: 50px; white-space: nowrap;
overflow: hidden;
overflow-x:-webkit-marquee;
-webkit-marquee-direction: forwards;
-webkit-marquee-style: scroll;
-webkit-marquee-speed: normal; //I changed this to `slow` - without effect
-webkit-marquee-increment: small;
.-webkit-marquee-repetition: 5;
overflow-x: marquee-line;
marquee-direction: forward;
marquee-style: scroll;
marquee-speed: normal; //I changed this to `slow` - without effect
}
我想,如果我可以在速度改變爲slow
上述商品型號將是平滑的。
所以,我想要一個simple
,smooth
和speed-adjustable
marque。
看看這個老回答同一個問題: http://stackoverflow.com/a/10547997/1809349 –
通過使用一些現成的解決方案去脫離網絡上的無數(而不是百分之一百重新發明輪子)。 – feeela
@DaniP。當我提出這個問題時,我看到了所有相關的答案。相關列表中沒有這個答案。有沒有更好的方法來搜索SO檔案? – Alegro