A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
[MMM-NewsFeedTicker] scroll from left to right only?
-
-
@sdetweil thanks I already saw that page, but it talks about
translateX
and there’s no evidence of it in that module’s CSS. -
@Cr4z33 ok, so. try it. maybe the default is right to left if not specified.
worst case u have the existing file still
-
@sdetweil nope I didn’t get what I wanted. :person_shrugging_medium-dark_skin_tone:
-
-
i did this, commented out the old in the MMM-NewsFeedTicker.css
and replaced with this/*@-webkit-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @-moz-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @-ms-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @-o-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } */ /* new stuff here */ @keyframes marquee { 0% { transform: translate(-100%, 0); } 50% { transform: translate(-50%, 0); } 100% { transform: translate(0, 0); } }
-
@sdetweil thank you gonna try asap! :D
-
OK this is getting weird now because I applied the above code and it STILL keeps scrolling back and forth! :anguished_face:
-
@Cr4z33 did u delete the old code?
/*@-webkit-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @-moz-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @-ms-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @-o-keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } @keyframes marquee { 0% { left: 100%; } 100% { left: -100%; } } */
notice the /* and */
-
@sdetweil of course I did. :)