דברים שרואים מכאן לא רואים בכלל
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

h-ticker.css 601B

12345678910111213141516171819202122
  1. /* (A) FORCE ALL ITEMS INTO SINGLE ROW */
  2. /* (A) FORCE ALL ITEMS INTO SINGLE ROW */
  3. .hmove { display: flex; }
  4. .hitem { width: 100%; flex-shrink: 0; }
  5. .hwrap {
  6. overflow: hidden;
  7. direction:rtl;
  8. position:fixed; left:0; bottom:0; z-index:23;
  9. background:#ff00007f;
  10. width:100vw;
  11. font-size: 250%;
  12. }
  13. /* (B) MOVE ITEMS FROM RIGHT TO LEFT */
  14. /* first item = 0, fourth item = -300% */
  15. @keyframes tickerh {
  16. 0% { transform: translatex(-100%); }
  17. 100% { transform: translatex(400%); }
  18. }
  19. .hmove { animation: tickerh linear 40s infinite; }
  20. /* .hmove:hover { animation-play-state: paused; } */