MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    MM-Navbar - Navigation Bar for Touchscreens to hide/show modules

    System
    11
    47
    27038
    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.
    • C
      chrisyy last edited by

      Its a possibility.
      Think u are missing a toggle there, i can build u one later and update it.

      1 Reply Last reply Reply Quote 0
      • C
        chrisyy last edited by

        @tidus5
        Can u try this?

        var hideallmodules = true;
        var hideallmodulesbutton = document.createElement(“span”);
        hideallmodulesbutton.className = “wi wi-day-rain-mix navbar”; // change icon here
        wrapper.appendChild(hideallmodulesbutton);

        $(hideallmodulesbutton).on(“click”, function(){
        if(hideallmodules){
        MM.getModules().exceptModule(this).exceptWithClass(‘clock’).enumerate(function(module){
        module.show(1000, function(){
        });
        });
        hideallmodules = false;
        }else{
        MM.getModules().exceptModule(this).exceptWithClass(‘clock’).enumerate(function(module){
        module.hide(1000, function(){
        });
        });
        hideallmodules = true;
        }
        });

        this is a bit messy, but should work as the rest of the buttons. will publish it to git, when i got time.

        tidus5 1 Reply Last reply Reply Quote 0
        • tidus5
          tidus5 @chrisyy last edited by

          @chrisyy Hello

          amazing!!! thank you

          just small error added exceptWithClass(‘MM-navbar’) (exceptmodule(this)) didnt work (the nav itself was hidden)
          thank you so much

          	$(hideallmodulesbutton).on("click", function(){
          		if(hideallmodules){
          			MM.getModules().exceptWithClass('MM-navbar').exceptWithClass('clock').enumerate(function(module){
          			module.show(1000, function(){
          					});
          				});
          			hideallmodules = false;
          		}else{
          			MM.getModules().exceptWithClass('MM-navbar').exceptWithClass('clock').enumerate(function(module){
          			module.hide(1000, function(){
          					});
          				});
          			hideallmodules = true;
          			}
          		});
          
          1 Reply Last reply Reply Quote 0
          • tidus5
            tidus5 last edited by

            @chrisyy yop everything is working perfectly

            i added a timing of 1000 on every hide/show
            without i had a little ugly mouvement sometimes 🙂
            again thanks you !!!

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

              What a great module! Is there a way to get the icons centerd? I´m using a 7" touchscreen display and it looks like the picture below:

              0_1483046096077_navbar.JPG

              If I would add more icons they go in a line below.

              tidus5 1 Reply Last reply Reply Quote 0
              • tidus5
                tidus5 @TheHyp3 last edited by tidus5

                @TheHyp3

                Hello
                in navbar.css you can play with

                .center{
                position: fixed;
                left: 45%;
                }

                • personnaly i removed this class
                strawberry 3.141 1 Reply Last reply Reply Quote 0
                • strawberry 3.141
                  strawberry 3.141 Project Sponsor Module Developer @tidus5 last edited by

                  @tidus5 its never a good idea to manipulate modules code, but after reviewing this module there is no chance to avoid it to have custom buttons. The module owner should change this to config options.

                  I came up with this solution to center them

                  custom.css

                  .MM-navbar .center {
                    left: 50%;
                    -webkit-transform: translate(-50%);
                  }
                  

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

                  1 Reply Last reply Reply Quote 0
                  • C
                    chrisyy last edited by

                    I have already tested some things and still didnt update and pushed to git.

                    The problem with the creation of buttons out of the config is a for/while that still doesn’t work. Also i would need a library for icons.

                    Ur proplem was indeed an issue, will fix this within git.

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

                      @strawberry-3.141 did a little change on my custome.css in MagicMirror/css. Now its working very well.

                      Heres the code:

                      .MM-navbar .center {
                      width: 100%;
                      text-align: center;
                      left: 0px;
                      }

                      0_1483098225679_navbar.JPG

                      1 Reply Last reply Reply Quote 0
                      • S
                        shashank @chrisyy last edited by

                        @chrisyy hi, i installed this module works great, how can i toggle between 2 same modules, example MMM-mails i need to toggle emails between gmail and hotmail , gmail to show hotmail to hide and vice versa

                        C 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 2 / 5
                        • 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