MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Rolling Banner

    Scheduled Pinned Locked Moved Troubleshooting
    18 Posts 4 Posters 10.0k Views 4 Watching
    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.
    • johnnyboyJ Offline
      johnnyboy @zkab
      last edited by johnnyboy

      This post is deleted!
      1 Reply Last reply Reply Quote 0
      • brobergB Offline
        broberg Project Sponsor
        last edited by broberg

        try this in your custom.css

        
        .helloworld {
          height: 125px;
          width: 600px;
          overflow: hidden;
          position: relative;
        }
        
        .helloworld div {
          display: block;
          width: 100%;
          height: 130px;
        
          position: absolute;
          overflow: hidden;
        
          animation: marquee 10s linear infinite;
        }
        
        
        @keyframes marquee {
          0% { left: 50%; }
          100% { left: -100%; }
        }
        

        Do note, the Pi doesn’t handle css animations that good, it lacks hardware acceleration.

        The css is mostly taken from : https://codepen.io/jamesbarnett/pen/kfmKa

        johnnyboyJ 1 Reply Last reply Reply Quote 1
        • johnnyboyJ Offline
          johnnyboy @broberg
          last edited by johnnyboy

          This post is deleted!
          brobergB 1 Reply Last reply Reply Quote 0
          • brobergB Offline
            broberg Project Sponsor @johnnyboy
            last edited by broberg

            @johnnyboy I just wanted to state the source, since I basically just copied the css code, (credit where credit is due :D )

            The css I posted above will scroll any text you enter in the config for the helloworld module, no need to alter any code.

            johnnyboyJ 1 Reply Last reply Reply Quote 1
            • johnnyboyJ Offline
              johnnyboy @broberg
              last edited by johnnyboy

              This post is deleted!
              1 Reply Last reply Reply Quote 0
              • Z Offline
                zkab
                last edited by

                Thanks for the css code - I will be away for a couple of days but will test it when I am back … I keep you posted

                1 Reply Last reply Reply Quote 0
                • Z Offline
                  zkab
                  last edited by

                  I tried the code and it works … but in my case I call ‘helloworld’ twice in ‘config.js’ - one text in ‘upper_third’ and one in ‘bottom bar’.
                  Is there away to make only the text in ‘bottom bar’ to scroll ?

                  strawberry 3.141S 1 Reply Last reply Reply Quote 0
                  • strawberry 3.141S Offline
                    strawberry 3.141 Project Sponsor Module Developer @zkab
                    last edited by strawberry 3.141

                    @zkab you can select all helloworld modules in region bottom with the selector .region.bottom .helloworld

                    Please create a github issue if you need help, so I can keep track

                    1 Reply Last reply Reply Quote 0
                    • Z Offline
                      zkab
                      last edited by

                      How do I use .region.bottom .helloworld ?
                      Can’t find any documentation …

                      strawberry 3.141S 1 Reply Last reply Reply Quote 0
                      • strawberry 3.141S Offline
                        strawberry 3.141 Project Sponsor Module Developer @zkab
                        last edited by

                        @zkab just replace it in the css rules above where you just used .helloworld e.g.

                        .region.bottom .helloworld {
                          height: 125px;
                          width: 600px;
                          overflow: hidden;
                          position: relative;
                        }
                        

                        Please create a github issue if you need help, so I can keep track

                        1 Reply Last reply Reply Quote 0
                        • Z Offline
                          zkab
                          last edited by

                          I don’t get this right - nothing changes.
                          Here is my custom.css

                          pi@mirror:~/MagicMirror/css $ cat custom.css
                          /*****************************************************
                           * Magic Mirror                                      *
                           * Custom CSS                                        *
                           *                                                   *
                           * By Michael Teeuw http://michaelteeuw.nl           *
                           * MIT Licensed.                                     *
                           *                                                   *
                           * Add any custom CSS below.                         *
                           * Changes to this files will be ignored by GIT. *
                           *****************************************************/
                          
                          body {
                          }
                          .compliments .xlarge {
                          font-size: 100px;
                          color: #ff6600;
                          font-family: "Roboto Condensed Bold", sans-serif;
                          font-style: italic;
                          }
                          .helloworld {
                          font-size: 75px;
                          color: #660;
                          font-family: "Roboto Condensed", sans-serif;
                          font-style: normal;
                          }
                          .calendar .time {
                          color: #660;
                          }
                          .newsfeed .dimmed {
                          font-size: 20px;
                          color: #a2d2f6;
                          line-height: 50px;
                          }
                          .newsfeed .medium {
                          font-size: 40px;
                          color: #660;
                          line-height: 60px;
                          }
                          .brightb {
                          color: #a2d2f6;
                          }
                          .wi-sunrise {
                          color: #ff0;
                          }
                          .wi-sunset {
                          color: #f60;
                          }
                          .wi-night-showers {
                          color: #a2d2f6;
                          }
                          .wi-degrees {
                          color: #415;
                          }
                          .wi-rain {
                          color: #a2d2f6;
                          }
                          .wi-showers {
                          color: #a2d2f6;
                          }
                          .wi-night-showers {
                          color: #a2d2f6;
                          }
                          .wi-night-alt-cloudy-windy {
                          color: #aaa;
                          }
                          .wi-night-cloudy {
                          color: #aaa;
                          }
                          .wi-cloudy {
                          color: #aaa;
                          }
                          .wi-day-cloudy {
                          color: #aaa;
                          }
                          .wi-cloudy {
                          color: #aaa;
                          }
                          .wi-cloudy-windy {
                          color: #aaa;
                          }
                          .wi-showers {
                          color: #a2d2f6;
                          }
                          .wi-thunderstorm {
                          color: #ff0;
                          }
                          .wi-snow {
                          color: #fff;
                          }
                          .wi-fog {
                          color: #999;
                          }
                          .wi-night-clear {
                          color: #F4F8A9;
                          }
                          .wi-night-rain {
                          color: #a2d2f6;
                          }
                          .wi-night-thunderstorm {
                          color: #ff0;
                          }
                          .wi-night-snow {
                          color: #fff;
                          }
                          .wi-day-sunny {
                          color: #ff0;
                          }
                          
                          
                          
                          .region.bottom .helloworld {
                            height: 125px;
                            width: 600px;
                            overflow: hidden;
                            position: relative;
                          }
                          
                          .helloworld div {
                            display: block;
                            width: 100%;
                            height: 130px;
                          
                            position: absolute;
                            overflow: hidden;
                          
                            animation: marquee 10s linear infinite;
                          }
                          
                          
                          strawberry 3.141S 1 Reply Last reply Reply Quote 0
                          • strawberry 3.141S Offline
                            strawberry 3.141 Project Sponsor Module Developer @zkab
                            last edited by

                            @zkab you have to replace the second one as well

                            Please create a github issue if you need help, so I can keep track

                            1 Reply Last reply Reply Quote 0
                            • Z Offline
                              zkab
                              last edited by

                              Second one ?

                              strawberry 3.141S 1 Reply Last reply Reply Quote 0
                              • strawberry 3.141S Offline
                                strawberry 3.141 Project Sponsor Module Developer @zkab
                                last edited by

                                @zkab

                                .region.bottom .helloworld div {
                                  display: block;
                                  width: 100%;
                                  height: 130px;
                                
                                  position: absolute;
                                  overflow: hidden;
                                
                                  animation: marquee 10s linear infinite;
                                }
                                

                                Please create a github issue if you need help, so I can keep track

                                1 Reply Last reply Reply Quote 0
                                • Z Offline
                                  zkab
                                  last edited by

                                  OK - I got it more or less working …
                                  There are two things I can’t figure out how to solve:

                                  1. The upper-case character seem to be chopped of above and lower part of some character (like g) have the same problem.
                                    I have changed ‘height: 130px’ back and forth … no effect.
                                  2. The rolling text don’t flow smoothly but hacks …

                                  Below is a portion of my helloworld.

                                  .helloworld {
                                  font-size: 75px;
                                  color: #660;
                                  font-family: "Roboto Condensed", sans-serif;
                                  font-style: normal;
                                  }
                                  .region.bottom .helloworld div {
                                    display: block;
                                    width: 100%;
                                    height: 230px;
                                    position: absolute;
                                    overflow: hidden;
                                    animation: marquee 15s linear infinite;
                                  }
                                  @keyframes marquee {
                                    0% { left: 50%; }
                                    100% { left: -100%; }
                                  }
                                  
                                  
                                  strawberry 3.141S 1 Reply Last reply Reply Quote 0
                                  • strawberry 3.141S Offline
                                    strawberry 3.141 Project Sponsor Module Developer @zkab
                                    last edited by strawberry 3.141

                                    @zkab 2. is expected behaviour of a pi as it doesn’t have a lot of rendering power

                                    Please create a github issue if you need help, so I can keep track

                                    1 Reply Last reply Reply Quote 0
                                    • Z Offline
                                      zkab
                                      last edited by

                                      Thanks for your support … sad that pi is so weak …

                                      1 Reply Last reply Reply Quote 0

                                      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                      With your input, this post could be even better 💗

                                      Register Login
                                      • 1 / 1
                                      • First post
                                        Last post
                                      Enjoying MagicMirror? Please consider a donation!
                                      MagicMirror created by Michael Teeuw.
                                      Forum managed by Sam, technical setup by Karsten.
                                      This forum is using NodeBB as its core | Contributors
                                      Contact | Privacy Policy