Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.

    UNSOLVED MMM-NewsFeedTicker, how do I make the marquee go faster

    Troubleshooting
    3
    8
    1073
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Lordy
      Lordy last edited by broberg

      Hello,

      I would like to make the marquee faster, but do not know how?
      I’ve already tried it with “Animation Speed”.
      Which possibilities are still there?

      Lordy
      (translate by google)

      1 Reply Last reply Reply Quote 0
      • broberg
        broberg Project Sponsor last edited by

        Try adding this to your custom.css :

        .MMM-NewsFeedTicker .tickerbody {
          -webkit-animation: marquee 2s linear infinite;
          -moz-animation: marquee 2s linear infinite;
          -ms-animation: marquee 2s linear infinite;
          -o-animation: marquee 2s linear infinite;
          animation: marquee 2s linear infinite;
        }
        
        1 Reply Last reply Reply Quote 0
        • Lordy
          Lordy last edited by

          Thanks first. (Erstmal Danke)
          But feel no difference to before. (Aber spüre keinen unterschied zu voher)
          Can you do it even faster? (Kann man es noch schneller machen?)

          broberg 1 Reply Last reply Reply Quote 0
          • broberg
            broberg Project Sponsor @Lordy last edited by

            @Lordy

            Try this, but after that I don’t know.

            .tickerbody {
              -webkit-animation: marquee 1s linear infinite !important;
              -moz-animation: marquee 1s linear infinite !important;
              -ms-animation: marquee 1s linear infinite !important;
              -o-animation: marquee 1s linear infinite !important;
              animation: marquee 1s linear infinite !important;
            }
            

            Be aware that the Raspberry pi doesn’t do animations very well, so something that works smooth and quick on a normal computer won’t work as well on a pi.

            1 Reply Last reply Reply Quote 0
            • Lordy
              Lordy last edited by

              Thanks, great job.😉
              There you can see how “important” is important, the same, did yesterday too.

              1 Reply Last reply Reply Quote 0
              • Lordy
                Lordy last edited by

                I have now discovered a new problem.
                I want to read the entire line and not the same line twice. *(Ich möchte die gesamte Zeile und nicht zweimal dieselbe Zeile lesen.)
                Where can you extend the display time? (Wo kann man die Anzeigezeit verlängern?)

                1 Reply Last reply Reply Quote 0
                • J
                  JohnDelta last edited by

                  @broberg said in MMM-NewsFeedTicker, how do I make the marquee go faster:

                  MMM-NewsFeedTicker

                  go to the following line in the MMM-NewsFeedTicker.js file and change the number 1000 to a lower number. (some users are finding that changing to 300 works best for them, adjust to your preference)

                  tickerBody.style.animationDuration = Math.round(this.config.updateInterval / 1000) + "s";
                  

                  hope it helps you

                  Lordy 1 Reply Last reply Reply Quote 0
                  • Lordy
                    Lordy @JohnDelta last edited by

                    @JohnDelta
                    Unfortunately no, thanks anyway.
                    My main concern is: “I want to read the entire line and not the same line twice. Where can you extend the display time?”

                    Lordy

                    1 Reply Last reply Reply Quote 0
                    • 1 / 1
                    • First post
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy