如何使用HTML和CSS和可能的JavaScript類似於waht https://kahoot.it有顏色更改/褪色背景?如何使HTML/CSS/JS顏色更改背景(如Kahoot.it有)
回答
你應該學會檢查並獲得
@keyframes bgcolor {
0% {
background-color: #45a3e5
}
30% {
background-color: #66bf39
}
60% {
background-color: #eb670f
}
90% {
background-color: #f35
}
100% {
background-color: #864cbf
}
}
body {
-webkit-animation: bgcolor 20s infinite;
animation: bgcolor 10s infinite;
-webkit-animation-direction: alternate;
animation-direction: alternate;
}
謝謝,我試過檢查元素,但不知道哪個文件是在。 – PlanetVaster
@PlanetVaster注意到這個解決方案交替顏色順序,你可能會很好。例如,如果顏色順序是紅色,黃色和藍色,則按以下順序運行顏色:紅色,黃色,藍色,黃色,紅色。默認情況下會做紅色,黃色,藍色,紅色,黃色,藍色。 – hungerstar
你真的沒有向我們展示任何你想要的東西。但我是一個好人,我知道你會學習的榜樣:
body {
animation: colorchange 10s infinite;
}
@keyframes colorchange
{
0% {background: red;}
25% {background: yellow;}
50% {background: blue;}
75% {background: green;}
100% {background: red;}
}
根據需要修改。顯然,將body
更改爲您的div封套與背景顏色無關。
對不起,我可以得到有用的東西,但看起來不正確,我忘了發佈它。 – PlanetVaster
/* The animation code */
@keyframes example {
0% {background-color: red;}
33% {background-color: yellow;}
66% {background-color: blue;}
100% {background-color: red;}
}
/* The element to apply the animation to */
div {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 10s;
animation-iteration-count: infinite;
}
body {
animation: 10000ms ease-in-out infinite color-change;
}
@keyframes color-change {
0% {
background-color: teal;
}
20% {
background-color: gold;
}
40% {
background-color: indianred;
}
60% {
background-color: violet;
}
80% {
background-color: green;
}
100% {
background-color: teal;
}
}
這顯然有效。爲什麼downvote? – hungerstar
我不知道爲什麼,我沒有倒下它 – PlanetVaster
- 1. 如何更改UINavigationController背景顏色?
- 2. WPF:如何更改TransitioningContentControl背景顏色?
- 3. 如何更改DXTabControl背景顏色?
- 4. 如何更改gnuplot的背景顏色?
- 5. 如何更改InfoWindow背景顏色
- 6. 如何更改PopupMenu背景的顏色
- 7. JTable中如何更改背景顏色
- 8. 如何更改TabHost背景顏色
- 9. 如何更改背景顏色
- 10. 如何更改背景顏色?
- 11. 如何更改處理背景顏色?
- 12. 如何更改表單背景顏色?
- 13. 如何更改SFSafariViewController的背景顏色?
- 14. 如何更改IDLDE背景顏色?
- 15. 如何更改ListViewItem的背景顏色?
- 16. CSS:如何更改背景顏色
- 17. 如何更改Radscheduler的背景顏色
- 18. 如何更改apDiv的背景顏色?
- 19. 如何更改NSPopupButton的背景顏色?
- 20. NSIS:如何更改RichEdit背景顏色
- 21. 如何更改ggvis的背景顏色?
- 22. Pygame:如何更改背景顏色
- 23. 如何更改JOptionPane的背景顏色?
- 24. 如何更改活動背景顏色
- 25. xterm:如何更改背景顏色?
- 26. 如何更改editText的背景顏色?
- 27. xe:calendarView - 如何更改背景顏色?
- 28. 如何更改GtkTextView的背景顏色?
- 29. 如何更改JLabel的背景顏色?
- 30. 如何更改UIBezierPath背景顏色?
您是否嘗試過的東西?至少檢查元素....你會發現很容易...(關鍵幀動畫) – DaniP