MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. broberg
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 1
    • Followers 5
    • Topics 12
    • Posts 792
    • Groups 3

    Posts

    Recent Best Controversial
    • RE: I know it's here but I cannot seem to find it.....

      If you are okay with the “same” output on both mirrors you can just start a webbrowser in fullscren on the other mirror and open the page from the itx one.

      Since the magicmirror is basically a webserver hosting one webpage it can be open on an infinit amount of computers at the same time.

      posted in General Discussion
      brobergB
      broberg
    • RE: Rolling Banner

      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

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Module Regions - Tutorial Requested

      @valid8r they expand, adapting to the content of the


      They only need positioning and orientation.

      all

      without size constrains will adapt to it’s content and the
      or body it’s placed in.
      You can certainly add width and height constrains to the regions if you feel like it.

      The thing with

      is you can basically place them anywhere you want to, make them any size, make them lay over or under other
      and so on and so on.

      posted in Development
      brobergB
      broberg
    • RE: Touchscreen Mirror

      @anhanyoung

      basically it’s registers the location of an object (i.e your finger) when an infrared light beam is disrupted.
      So the ir frame goes on the outside of the mirror.

      posted in General Discussion
      brobergB
      broberg
    • RE: Rolling Banner

      @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.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Adjust modules size to match each other (weather/calendar)

      @l8kerjuan It’s up to the the person who made the module, the xsmall, small etc are all classes that can be assigned to different divs in the module,

      checking the .js file for each module you can see what part of the module the classes are used on.
      As for the calendar, the normal class is used on the events.

      posted in Development
      brobergB
      broberg
    • RE: Newbie Incoming !!!!

      @ProtoBn Regarding what Pi you want is pretty much depending on what you intend to run on it.

      If you intend to primarily run text based information then any of the newish pi will do (2-4), but if you want to run animations, video etc etc the faster the better.

      And you don’t really need a pi either, any type of computer that can run Linux will do the trick. (I think Windows is also an option).

      posted in General Discussion
      brobergB
      broberg
    • RE: My own fonts

      @zkab

       @font-face {
        font-family: shotgunk;
        font-style: normal;
        font-weight: 400;
      
        src:
          local("shotgunk"),
          url("../fonts/shotgunk/SHOTGUNK.TTF") format("truetype");
      
      }
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: Adding a background video?

      @Anthony_Haddad my first thought was if background-image could handle this, but no go. Unless you convert it to a humongous GIF.

      But MM2 can handle the HTML video tag, and supports some videoformats, so here is the freshly baked basic htmlvideo player module!

      [card:brobergp/MMM-htmlvideo]

      posted in Development
      brobergB
      broberg
    • RE: MMM Remote Control Error

      @Chynovsky you are missing commas after

      module: 'MMM-Remote-Control'
      And
      position: 'bottom_left'

      It should be

      module: 'MMM-Remote-Control',
      And
      position: 'bottom_left',

      posted in General Discussion
      brobergB
      broberg
    • 1 / 1