0
我想作出一些滑塊在我自己的方式,但它似乎什麼不好:滾動X與格
我:
<div class="slider">
<div class="img first"></div>
<div class="img second"></div>
<div class="img third"></div>
</div>
.slider{width: 100%; max-height: 100%; overflow: hidden;}
//I don't want to see scrolls
.img{width: 100%; height: 100%; float: left;}
.first{background: red;}
.second{background: blue;}
.third{background: green;}
基本上我想要的是有這樣的:
100% 100% 100%
+-------+--------+-------+
+-------+
| 100% |
|first | second third
+-------+
+------------------------+
問題是,我的div下一個下一個..是浮動的問題:左?
這很容易我想用javascript:D你可以描述我這個關鍵幀我不明白你爲什麼這麼做:D – BestBudds
關鍵幀在0%到100%的範圍內工作。所以0%是你開始的地方,100%是你的終點。如果你有一張幻燈片,你會突出顯示你的百分比中的這兩點。正如您在我爲您提供的CSS中看到的那樣,我有4張幻燈片。然後,這4張幻燈片需要根據滑入方式按0%到100%排列。幻燈片移動正在以-100%的分組完成,因爲滑塊內部的圖像佔用了25%的空間。 有關@keyframes規則的更多信息,請參閱w3c的此鏈接。 http://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp – Cutter
Okqay謝謝你:D – BestBudds