• New Android 15 still adaping color of android navigation bar to background but only for Chrome browser.

    NOT FOR PWA APP.
    New Android 15 still adaping color of android navigation bar to background but only for Chrome browser. NOT FOR PWA APP.
    Yay
    1
    0 Comments 0 Shares 4K Views 0 Reviews
  • In new Android 15:

    Android navigation bar color its same.

    Previous Android adapted color to backgroud color.

    Hope they will add posibility to define color of android navigator bar at manifest.json for PWA apps soon.

    Over there its possible to define color of address bar and background of PWA when loading so far.

    #PWA #Google
    In new Android 15: Android navigation bar color its same. Previous Android adapted color to backgroud color. Hope they will add posibility to define color of android navigator bar at manifest.json for PWA apps soon. Over there its possible to define color of address bar and background of PWA when loading so far. #PWA #Google
    0 Comments 0 Shares 5K Views 0 Reviews
  • New users has been approved.
    New users has been approved.
    Yay
    1
    0 Comments 0 Shares 1K Views 0 Reviews
  • Example style for button:

    <style>
    .checkbox-wrapper-8 .tgl {
    display: none;
    }
    .checkbox-wrapper-8 .tgl,
    .checkbox-wrapper-8 .tgl:after,
    .checkbox-wrapper-8 .tgl:before,
    .checkbox-wrapper-8 .tgl *,
    .checkbox-wrapper-8 .tgl *:after,
    .checkbox-wrapper-8 .tgl *:before,
    .checkbox-wrapper-8 .tgl + .tgl-btn {
    box-sizing: border-box;
    }
    .checkbox-wrapper-8 .tgl::-moz-selection,
    .checkbox-wrapper-8 .tgl:after::-moz-selection,
    .checkbox-wrapper-8 .tgl:before::-moz-selection,
    .checkbox-wrapper-8 .tgl *::-moz-selection,
    .checkbox-wrapper-8 .tgl *:after::-moz-selection,
    .checkbox-wrapper-8 .tgl *:before::-moz-selection,
    .checkbox-wrapper-8 .tgl + .tgl-btn::-moz-selection,
    .checkbox-wrapper-8 .tgl::selection,
    .checkbox-wrapper-8 .tgl:after::selection,
    .checkbox-wrapper-8 .tgl:before::selection,
    .checkbox-wrapper-8 .tgl *::selection,
    .checkbox-wrapper-8 .tgl *:after::selection,
    .checkbox-wrapper-8 .tgl *:before::selection,
    .checkbox-wrapper-8 .tgl + .tgl-btn::selection {
    background: none;
    }
    .checkbox-wrapper-8 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    .checkbox-wrapper-8 .tgl + .tgl-btn:after,
    .checkbox-wrapper-8 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    }
    .checkbox-wrapper-8 .tgl + .tgl-btn:after {
    left: 0;
    }
    .checkbox-wrapper-8 .tgl + .tgl-btn:before {
    display: none;
    }
    .checkbox-wrapper-8 .tgl:checked + .tgl-btn:after {
    left: 50%;
    }

    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn {
    overflow: hidden;
    transform: skew(-10deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.2s ease;
    font-family: sans-serif;
    background: #888;
    }
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after,
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before {
    transform: skew(10deg);
    display: inline-block;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    position: absolute;
    line-height: 2em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    }
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after {
    left: 100%;
    content: attr(data-tg-on);
    }
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before {
    left: 0;
    content: attr(data-tg-off);
    }
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active {
    background: #888;
    }
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active:before {
    left: -10%;
    }
    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn {
    background: #86d993;
    }
    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:before {
    left: -100%;
    }
    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:after {
    left: 0;
    }
    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:active:after {
    left: 10%;
    }
    </style>
    Example style for button: <style> .checkbox-wrapper-8 .tgl { display: none; } .checkbox-wrapper-8 .tgl, .checkbox-wrapper-8 .tgl:after, .checkbox-wrapper-8 .tgl:before, .checkbox-wrapper-8 .tgl *, .checkbox-wrapper-8 .tgl *:after, .checkbox-wrapper-8 .tgl *:before, .checkbox-wrapper-8 .tgl + .tgl-btn { box-sizing: border-box; } .checkbox-wrapper-8 .tgl::-moz-selection, .checkbox-wrapper-8 .tgl:after::-moz-selection, .checkbox-wrapper-8 .tgl:before::-moz-selection, .checkbox-wrapper-8 .tgl *::-moz-selection, .checkbox-wrapper-8 .tgl *:after::-moz-selection, .checkbox-wrapper-8 .tgl *:before::-moz-selection, .checkbox-wrapper-8 .tgl + .tgl-btn::-moz-selection, .checkbox-wrapper-8 .tgl::selection, .checkbox-wrapper-8 .tgl:after::selection, .checkbox-wrapper-8 .tgl:before::selection, .checkbox-wrapper-8 .tgl *::selection, .checkbox-wrapper-8 .tgl *:after::selection, .checkbox-wrapper-8 .tgl *:before::selection, .checkbox-wrapper-8 .tgl + .tgl-btn::selection { background: none; } .checkbox-wrapper-8 .tgl + .tgl-btn { outline: 0; display: block; width: 4em; height: 2em; position: relative; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .checkbox-wrapper-8 .tgl + .tgl-btn:after, .checkbox-wrapper-8 .tgl + .tgl-btn:before { position: relative; display: block; content: ""; width: 50%; height: 100%; } .checkbox-wrapper-8 .tgl + .tgl-btn:after { left: 0; } .checkbox-wrapper-8 .tgl + .tgl-btn:before { display: none; } .checkbox-wrapper-8 .tgl:checked + .tgl-btn:after { left: 50%; } .checkbox-wrapper-8 .tgl-skewed + .tgl-btn { overflow: hidden; transform: skew(-10deg); -webkit-backface-visibility: hidden; backface-visibility: hidden; transition: all 0.2s ease; font-family: sans-serif; background: #888; } .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after, .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before { transform: skew(10deg); display: inline-block; transition: all 0.2s ease; width: 100%; text-align: center; position: absolute; line-height: 2em; font-weight: bold; color: #fff; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); } .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after { left: 100%; content: attr(data-tg-on); } .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before { left: 0; content: attr(data-tg-off); } .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active { background: #888; } .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active:before { left: -10%; } .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn { background: #86d993; } .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:before { left: -100%; } .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:after { left: 0; } .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:active:after { left: 10%; } </style>
    0 Comments 0 Shares 4K Views 0 Reviews
  • Example DIV for that:

    <div class="checkbox-wrapper-8" style="display: flex; float: right;">
    <input class="tgl tgl-skewed" id="cb3-8" type="checkbox" onclick="togglePlay();vibrate();"/>
    <label class="tgl-btn" data-tg-off="ON" data-tg-on="OFF" for="cb3-8"></label>
    </div>
    Example DIV for that: <div class="checkbox-wrapper-8" style="display: flex; float: right;"> <input class="tgl tgl-skewed" id="cb3-8" type="checkbox" onclick="togglePlay();vibrate();"/> <label class="tgl-btn" data-tg-off="ON" data-tg-on="OFF" for="cb3-8"></label> </div>
    0 Comments 0 Shares 2K Views 0 Reviews
  • This open public news it's revolution, only some of social media website has it.

    Like Reddit and CDEFGAHC.COM

    And now BLUESKY.APP
    This open public news it's revolution, only some of social media website has it. Like Reddit and CDEFGAHC.COM And now BLUESKY.APP
    0 Comments 0 Shares 5K Views 0 Reviews
  • Adrian you are approved.
    Adrian you are approved.
    Haha
    1
    0 Comments 0 Shares 2K Views 0 Reviews
  • Avaible only at PWA app from Chrome.
    Avaible only at PWA app from Chrome.
    Haha
    1
    0 Comments 0 Shares 3K Views 0 Reviews
  • They reset it by CHACHE plugin at WORPRESS for you all to apply changes about the website about some parts, funcions of website.
    They reset it by CHACHE plugin at WORPRESS for you all to apply changes about the website about some parts, funcions of website.
    0 Comments 0 Shares 3K Views 0 Reviews
  • APP FROM CHROME FOR DESKTOP LOOKS LIKE THIS AT MAC OS in your dock.
    APP FROM CHROME FOR DESKTOP LOOKS LIKE THIS AT MAC OS in your dock.
    0 Comments 0 Shares 3K Views 0 Reviews
  • IMHO desktop Chrome APP it's more quick then the browser.

    It's has less functions, less code.

    And it's bigger. Almost full screen with no address bar.

    This is big difference. Trust me.

    There is motion in your scroll and gives it's give the satisfaction.
    IMHO desktop Chrome APP it's more quick then the browser. It's has less functions, less code. And it's bigger. Almost full screen with no address bar. This is big difference. Trust me. There is motion in your scroll and gives it's give the satisfaction.
    0 Comments 0 Shares 3K Views 0 Reviews
  • There is also APP for desktop from Chrome.

    #desktop #app #Chrome
    There is also APP for desktop from Chrome. #desktop #app #Chrome
    0 Comments 0 Shares 2K Views 0 Reviews
  • YOU CAN INSTALL PWA APP FROM CHROME BY DOWNLOADING IT TO MOBILE BY CHROME BROWSER.
    YOU CAN INSTALL PWA APP FROM CHROME BY DOWNLOADING IT TO MOBILE BY CHROME BROWSER.
    0 Comments 0 Shares 2K Views 0 Reviews
  • Vibrations for mobile are just possible at Chrome and Opera.

    #vibrations #at #mobile #www #and #PWA #app #from #chrome
    Vibrations for mobile are just possible at Chrome and Opera. #vibrations #at #mobile #www #and #PWA #app #from #chrome
    0 Comments 0 Shares 3K Views 0 Reviews
  • CDEFGAHC.COM

    PWA app.

    #CDEFGAHC.COM #app
    CDEFGAHC.COM PWA app. #CDEFGAHC.COM #app
    0 Comments 0 Shares 4K Views 0 Reviews
  • There is PWA app possible at Chrome browser.
    There is PWA app possible at Chrome browser.
    Haha
    1
    0 Comments 0 Shares 2K Views 0 Reviews
  • https://www.tiktok.com/@niaruko_chan/video/7424833780948487456?is_from_webapp=1&sender_device=pc&web_id=7401613784727488032
    https://www.tiktok.com/@niaruko_chan/video/7424833780948487456?is_from_webapp=1&sender_device=pc&web_id=7401613784727488032
    Love
    1
    0 Comments 0 Shares 4K Views 0 Reviews
  • https://youtu.be/fJuapp9SORA?si=w2m1KepKDZsVBBY8


    #CDEFGAHC.COM #DJFOX
    https://youtu.be/fJuapp9SORA?si=w2m1KepKDZsVBBY8 #CDEFGAHC.COM #DJFOX
    Pride
    1
    0 Comments 0 Shares 3K Views 0 Reviews
  • Now there is possible PWA app at Chrome by add to home button.

    #app
    Now there is possible PWA app at Chrome by add to home button. #app
    Haha
    1
    1 Comments 0 Shares 3K Views 0 Reviews
  • Post from new user need to be approved. Just few of them.
    Post from new user need to be approved. Just few of them.
    0 Comments 0 Shares 3K Views 0 Reviews
  • https://www.youtube.com/watch?v=weeI1G46q0o

    DJ Khaled - I'm The One ft. Justin Bieber, Quavo, Chance the Rapper, Lil Wayne

    #CDEFGAHC.COM #djkHALED
    https://www.youtube.com/watch?v=weeI1G46q0o DJ Khaled - I'm The One ft. Justin Bieber, Quavo, Chance the Rapper, Lil Wayne #CDEFGAHC.COM #djkHALED
    Yay
    1
    0 Comments 0 Shares 3K Views 0 Reviews
  • Happy hour.
    Happy hour.
    Like
    1
    0 Comments 0 Shares 2K Views 0 Reviews
  • APP will be soon.
    APP will be soon.
    0 Comments 0 Shares 3K Views 0 Reviews