דברים שרואים מכאן לא רואים בכלל
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ticker.css 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. * { box-sizing: border-box; }
  2. $duration: 30s;
  3. @-webkit-keyframes ticker {
  4. 0% {
  5. -webkit-transform: translate3d(0, 0, 0);
  6. transform: translate3d(0, 0, 0);
  7. visibility: visible;
  8. }
  9. 100% {
  10. -webkit-transform: translate3d(-100%, 0, 0);
  11. transform: translate3d(-100%, 0, 0);
  12. }
  13. }
  14. @keyframes ticker {
  15. 0% {
  16. -webkit-transform: translate3d(0, 0, 0);
  17. transform: translate3d(0, 0, 0);
  18. visibility: visible;
  19. }
  20. 100% {
  21. -webkit-transform: translate3d(-100%, 0, 0);
  22. transform: translate3d(-100%, 0, 0);
  23. }
  24. }
  25. .ticker-wrap {
  26. position: fixed;
  27. bottom: 0;
  28. width: 100%;
  29. overflow: hidden;
  30. height: 4rem;
  31. background-color: rgba(#000, 0.9);
  32. padding-left: 100%;
  33. box-sizing: content-box;
  34. .ticker {
  35. display: inline-block;
  36. height: 4rem;
  37. line-height: 4rem;
  38. white-space: nowrap;
  39. padding-right: 100%;
  40. box-sizing: content-box;
  41. -webkit-animation-iteration-count: infinite;
  42. animation-iteration-count: infinite;
  43. -webkit-animation-timing-function: linear;
  44. animation-timing-function: linear;
  45. -webkit-animation-name: ticker;
  46. animation-name: ticker;
  47. -webkit-animation-duration: $duration;
  48. animation-duration: $duration;
  49. &__item {
  50. display: inline-block;
  51. padding: 0 2rem;
  52. font-size: 2rem;
  53. color: white;
  54. }
  55. }
  56. }
  57. body { padding-bottom: 5rem; }
  58. h1,h2,p {padding: 0 5%;}