Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Praktische Anwendungen (Showcase)
  4. Dark VIS 4

NEWS

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    21
    1
    862

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    9.0k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.4k

Dark VIS 4

Scheduled Pinned Locked Moved Praktische Anwendungen (Showcase)
8 Posts 3 Posters 4.6k Views 16 Watching
  • 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.
  • Enrico FischerE Offline
    Enrico FischerE Offline
    Enrico Fischer
    wrote on last edited by
    #1

    Hier wieder mal eine neue Version.Ich habe wieder einige Animationen hinterlegt und habe mich auf die Standart und Material Widgets beschränkt.

    Video Vorschau

    Home
    Screenshot_20220331-211219_Fully Kiosk Browser.jpg

    Beleuchtung
    Screenshot_20220331-211228_Fully Kiosk Browser.jpg

    Heizung
    Screenshot_20220331-211235_Fully Kiosk Browser.jpg

    Wetter
    Screenshot_20220331-211241_Fully Kiosk Browser.jpg

    Media (noch in Arbeit)
    Screenshot_20220331-211245_Fully Kiosk Browser.jpg

    System
    Screenshot_20220331-211249_Fully Kiosk Browser.jpg

    Kraftstoff
    Screenshot_20220331-211253_Fully Kiosk Browser.jpg

    Systemlogs
    Screenshot_20220331-211257_Fully Kiosk Browser.jpg

    Tagesschau in 100 Sek.
    Screenshot_20220331-211502_Fully Kiosk Browser.jpg

    Download
    grey.zip

    CSS Code

    @import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");
    
    
    /* vis-view */
    
    
    .vis-view {
       font-family: 'DM Sans', sans-serif;
       background: #1f1d2b;
       color:#fff;
       transition: 0.2s;
       overflow: hidden;
     display: flex;
    }
    
    
    .btn {
     border-radius: 20px;
     background: #1f2937;
     box-shadow:  6px 6px 12px #141a23,
                -6px -6px 12px #2a384b;
     color:rgba(255,255,255,.8);
    }
    
    
    .btnin {
    border-radius: 20px;
    background: #1f2937;
    box-shadow: inset 4px 4px 9px #19212d,
               inset -4px -4px 9px #253141;
     color:rgba(255,255,255,.8);
    }
    
    
    
    .modulgreen {
     border-radius: 20px;
     background-color: rgba(149, 236, 192, 0.8);
     color: #4A4A4A;
     box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);
    }
    .modulred {
     border-radius: 20px;
     background-color: rgba(239, 176, 185, 0.8);
     color: #4A4A4A;
     box-shadow: inset 4px 4px 9px #19212d,
               inset -4px -4px 9px #253141;
    }
    
    .bggreen {
     border-radius: 25px;
     background-color: green;
    }
    
    .bgred {
     border-radius: 25px;
     background-color: red;
    }
    
    
    .icon {
     box-shadow: none;
     background-color: #1f2937;
     color:rgba(255,255,255,.8);
    }
    
    /*RGB Animation*/
    
    
    .rgb-glow {
       border-radius: 100px;
       box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1), 2px 2px 6px rgba(0, 0, 0, 0.8), inset -2px -2px 10px rgba(255, 255, 255, 0.05), inset 2px 2px 10px rgba(0, 0, 0, 0.5);
       animation: lightsbg 5s 750ms linear infinite;
    }
    
    @keyframes lightsbg {
       0% {
           color: hsl(230, 40%, 80%);
           box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
       }
       30% {
           color: hsl(230, 80%, 90%);
           box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
       }
       40% {
           color: hsl(230, 100%, 95%);
           box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
       }
       70% {
           color: hsl(230, 80%, 90%);
           box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
       }
       100% {
           color: hsl(230, 40%, 80%);
           box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
       }
    }
    
    
    /*Text Animation*/
    
    .glow-text {
       margin: auto;
       font-size: 25px;
       font-weight: 300;
       animation: lights 5s 750ms linear infinite;
    }
    
    @keyframes lights {
       0% {
           color: hsl(230, 40%, 80%);
           text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
       }
       30% {
           color: hsl(230, 80%, 90%);
           text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
       }
       40% {
           color: hsl(230, 100%, 95%);
           text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
       }
       70% {
           color: hsl(230, 80%, 90%);
           text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
       }
       100% {
           color: hsl(230, 40%, 80%);
           text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
       }
    }
    
    
    .bgglow {
       border-radius:25px;
       background: aqua;
       box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
       animation: colormorph 8s linear infinite;
    }
    
    @keyframes colormorph {
       0% {
           background: aqua;
           box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
       }
       25% {
           background: #F1FF98;
           box-shadow: inset 0 20px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
       }
       50% {
           background: #98FFA4;
           box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
       }
       75% {
           background: #FF98FD;
           box-shadow: inset 0 20px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
       }
       100% {
           background: aqua;
           box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
       }
    }
    

    H 1 Reply Last reply
    14
    • Enrico FischerE Enrico Fischer

      Hier wieder mal eine neue Version.Ich habe wieder einige Animationen hinterlegt und habe mich auf die Standart und Material Widgets beschränkt.

      Video Vorschau

      Home
      Screenshot_20220331-211219_Fully Kiosk Browser.jpg

      Beleuchtung
      Screenshot_20220331-211228_Fully Kiosk Browser.jpg

      Heizung
      Screenshot_20220331-211235_Fully Kiosk Browser.jpg

      Wetter
      Screenshot_20220331-211241_Fully Kiosk Browser.jpg

      Media (noch in Arbeit)
      Screenshot_20220331-211245_Fully Kiosk Browser.jpg

      System
      Screenshot_20220331-211249_Fully Kiosk Browser.jpg

      Kraftstoff
      Screenshot_20220331-211253_Fully Kiosk Browser.jpg

      Systemlogs
      Screenshot_20220331-211257_Fully Kiosk Browser.jpg

      Tagesschau in 100 Sek.
      Screenshot_20220331-211502_Fully Kiosk Browser.jpg

      Download
      grey.zip

      CSS Code

      @import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");
      
      
      /* vis-view */
      
      
      .vis-view {
         font-family: 'DM Sans', sans-serif;
         background: #1f1d2b;
         color:#fff;
         transition: 0.2s;
         overflow: hidden;
       display: flex;
      }
      
      
      .btn {
       border-radius: 20px;
       background: #1f2937;
       box-shadow:  6px 6px 12px #141a23,
                  -6px -6px 12px #2a384b;
       color:rgba(255,255,255,.8);
      }
      
      
      .btnin {
      border-radius: 20px;
      background: #1f2937;
      box-shadow: inset 4px 4px 9px #19212d,
                 inset -4px -4px 9px #253141;
       color:rgba(255,255,255,.8);
      }
      
      
      
      .modulgreen {
       border-radius: 20px;
       background-color: rgba(149, 236, 192, 0.8);
       color: #4A4A4A;
       box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);
      }
      .modulred {
       border-radius: 20px;
       background-color: rgba(239, 176, 185, 0.8);
       color: #4A4A4A;
       box-shadow: inset 4px 4px 9px #19212d,
                 inset -4px -4px 9px #253141;
      }
      
      .bggreen {
       border-radius: 25px;
       background-color: green;
      }
      
      .bgred {
       border-radius: 25px;
       background-color: red;
      }
      
      
      .icon {
       box-shadow: none;
       background-color: #1f2937;
       color:rgba(255,255,255,.8);
      }
      
      /*RGB Animation*/
      
      
      .rgb-glow {
         border-radius: 100px;
         box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1), 2px 2px 6px rgba(0, 0, 0, 0.8), inset -2px -2px 10px rgba(255, 255, 255, 0.05), inset 2px 2px 10px rgba(0, 0, 0, 0.5);
         animation: lightsbg 5s 750ms linear infinite;
      }
      
      @keyframes lightsbg {
         0% {
             color: hsl(230, 40%, 80%);
             box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
         }
         30% {
             color: hsl(230, 80%, 90%);
             box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
         }
         40% {
             color: hsl(230, 100%, 95%);
             box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
         }
         70% {
             color: hsl(230, 80%, 90%);
             box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
         }
         100% {
             color: hsl(230, 40%, 80%);
             box-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
         }
      }
      
      
      /*Text Animation*/
      
      .glow-text {
         margin: auto;
         font-size: 25px;
         font-weight: 300;
         animation: lights 5s 750ms linear infinite;
      }
      
      @keyframes lights {
         0% {
             color: hsl(230, 40%, 80%);
             text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
         }
         30% {
             color: hsl(230, 80%, 90%);
             text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
         }
         40% {
             color: hsl(230, 100%, 95%);
             text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
         }
         70% {
             color: hsl(230, 80%, 90%);
             text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
         }
         100% {
             color: hsl(230, 40%, 80%);
             text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
         }
      }
      
      
      .bgglow {
         border-radius:25px;
         background: aqua;
         box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
         animation: colormorph 8s linear infinite;
      }
      
      @keyframes colormorph {
         0% {
             background: aqua;
             box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
         }
         25% {
             background: #F1FF98;
             box-shadow: inset 0 20px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
         }
         50% {
             background: #98FFA4;
             box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
         }
         75% {
             background: #FF98FD;
             box-shadow: inset 0 20px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
         }
         100% {
             background: aqua;
             box-shadow: inset 0 30px 10px 6px rgba(0, 0, 0, 0.3), inset 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
         }
      }
      

      H Offline
      H Offline
      helfi9999
      wrote on last edited by
      #2

      @enrico-fischer Hi eine Frage wo hast du die Icons für das Menu her?
      Bräuchte noch ein paar andere.

      Kannst du mir bitte aushelfen.

      Gruss
      helfi9999

      Intel NUC mit Iobroker

      Enrico FischerE 1 Reply Last reply
      0
      • H helfi9999

        @enrico-fischer Hi eine Frage wo hast du die Icons für das Menu her?
        Bräuchte noch ein paar andere.

        Kannst du mir bitte aushelfen.

        Gruss
        helfi9999

        Enrico FischerE Offline
        Enrico FischerE Offline
        Enrico Fischer
        wrote on last edited by
        #3

        @helfi9999 Ich hab den Link auf meinem PC zu Hause.

        H 1 Reply Last reply
        0
        • Enrico FischerE Enrico Fischer

          @helfi9999 Ich hab den Link auf meinem PC zu Hause.

          H Offline
          H Offline
          helfi9999
          wrote on last edited by
          #4

          @enrico-fischer hi würde gerne deinen Link haben für die Icons.

          Intel NUC mit Iobroker

          Enrico FischerE 1 Reply Last reply
          0
          • H helfi9999

            @enrico-fischer hi würde gerne deinen Link haben für die Icons.

            Enrico FischerE Offline
            Enrico FischerE Offline
            Enrico Fischer
            wrote on last edited by
            #5

            @helfi9999 https://fonts.google.com/icons

            Z 1 Reply Last reply
            0
            • Enrico FischerE Enrico Fischer

              @helfi9999 https://fonts.google.com/icons

              Z Offline
              Z Offline
              Zwillbrocki
              wrote on last edited by
              #6

              @enrico-fischer
              Guten Morgen enrico, vielen lieben dank für das zur verfügung stellen deiner Visualiesierrung. Ich habe sie mir mal zu Testzwecken gedownloadet und sie funktioniert auch teilweise.
              Ich habe dazu noch ein paar Fragen.

              1. Wo muss oder sollte ich das css abspeichern?
              2. Wie kann ich das Regenradr von Buineradar bearbeiten, der springt imer wieder auf Oldenburg zurück.
              3. Unter dem Spritpreisen ist wahrscheinlich ein Diagramm, wie kann ich darauf zugreifen? hast die Daten in Influxdb gespeichert?
                wo und wie hast du die Spritpreise gespeichert?
                Ich habe e10 super und das habe ich nun erfolgreich eingebunden und zeigt mir die Tankstellen in der Nähe an.

              Ich bedanke mich schon im voraus ganz herzlich bei dir dir.

              Mfg
              Zwillbrocki

              Enrico FischerE 1 Reply Last reply
              0
              • Z Zwillbrocki

                @enrico-fischer
                Guten Morgen enrico, vielen lieben dank für das zur verfügung stellen deiner Visualiesierrung. Ich habe sie mir mal zu Testzwecken gedownloadet und sie funktioniert auch teilweise.
                Ich habe dazu noch ein paar Fragen.

                1. Wo muss oder sollte ich das css abspeichern?
                2. Wie kann ich das Regenradr von Buineradar bearbeiten, der springt imer wieder auf Oldenburg zurück.
                3. Unter dem Spritpreisen ist wahrscheinlich ein Diagramm, wie kann ich darauf zugreifen? hast die Daten in Influxdb gespeichert?
                  wo und wie hast du die Spritpreise gespeichert?
                  Ich habe e10 super und das habe ich nun erfolgreich eingebunden und zeigt mir die Tankstellen in der Nähe an.

                Ich bedanke mich schon im voraus ganz herzlich bei dir dir.

                Mfg
                Zwillbrocki

                Enrico FischerE Offline
                Enrico FischerE Offline
                Enrico Fischer
                wrote on last edited by
                #7

                @zwillbrocki Eigendlich sollte der css Style Kram automatisch beim importieren in den CSS einstellungen in der Vis landen.Du kannst es aber auch händisch einfügen

                Unbenannt.png

                Der Radar ist eigendlich nur ein Iframe
                Hier der Link zum einstellen und unten wird dann der html code generiert
                https://gadgets.buienradar.nl/gadget/zoommap#

                Und die Spritpreise laufen über influx.

                Z 1 Reply Last reply
                0
                • Enrico FischerE Enrico Fischer

                  @zwillbrocki Eigendlich sollte der css Style Kram automatisch beim importieren in den CSS einstellungen in der Vis landen.Du kannst es aber auch händisch einfügen

                  Unbenannt.png

                  Der Radar ist eigendlich nur ein Iframe
                  Hier der Link zum einstellen und unten wird dann der html code generiert
                  https://gadgets.buienradar.nl/gadget/zoommap#

                  Und die Spritpreise laufen über influx.

                  Z Offline
                  Z Offline
                  Zwillbrocki
                  wrote on last edited by
                  #8

                  @enrico-fischer
                  dankeschön für deine Antwort, ich hoffe du und alle anderen natürlich auch schöne Weihnachtstage gehabt?

                  ich schaue mir das die Tage mal genauer an.

                  einen schönen Abend allen zusammen.

                  LG

                  Zwillbroki

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  Support us

                  ioBroker
                  Community Adapters
                  Donate

                  676

                  Online

                  32.5k

                  Users

                  81.6k

                  Topics

                  1.3m

                  Posts
                  Community
                  Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                  ioBroker Community 2014-2025
                  logo
                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Home
                  • Recent
                  • Tags
                  • Unread 0
                  • Categories
                  • Unreplied
                  • Popular
                  • GitHub
                  • Docu
                  • Hilfe