• Send my 400$ by PapPal to pay for my T-Mobile bill.

    www.PayPal.me/deweloper
    Send my 400$ by PapPal to pay for my T-Mobile bill. www.PayPal.me/deweloper
    PƂać Maciej SoroczyƄski za pomocą usƂugi PayPal.Me
    PrzejdĆș do paypal.me/deweloper i podaj kwotę. To system PayPal, jest zatem Ƃatwo i bezpiecznie. Nie masz konta PayPal? To ĆŒaden problem.
    Pride
    1
    0 Commentaires 0 Parts 3KB Vue 0 Aperçu
  • For sound when something is pressed:

    <script>
    function backspin(url) {
    var ourAudio = document.createElement('audio'); // Create a audio element using the DOM
    ourAudio.style.display = "none"; // Hide the audio element
    ourAudio.src = "https://cdefgahc.com/wav/front.wav"; // Set resource to our URL
    ourAudio.autoplay = true; // Automatically play sound
    ourAudio.onended = function() {
    this.remove(); // Remove when played.
    };
    document.body.appendChild(ourAudio);
    }
    </script>

    For PHP file and with no<script></script> for CUSTOM JavaScript if you have.

    And I use onclick for that:

    backspin();

    #JavaScript #onclick #sound
    For sound when something is pressed: <script> function backspin(url) { var ourAudio = document.createElement('audio'); // Create a audio element using the DOM ourAudio.style.display = "none"; // Hide the audio element ourAudio.src = "https://cdefgahc.com/wav/front.wav"; // Set resource to our URL ourAudio.autoplay = true; // Automatically play sound ourAudio.onended = function() { this.remove(); // Remove when played. }; document.body.appendChild(ourAudio); } </script> For PHP file and with no<script></script> for CUSTOM JavaScript if you have. And I use onclick for that: backspin(); #JavaScript #onclick #sound
    Yay
    1
    0 Commentaires 0 Parts 10KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 11KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 10KB Vue 0 Aperçu
  • New users has been approved.
    New users has been approved.
    Yay
    1
    0 Commentaires 0 Parts 3KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 11KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 5KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 11KB Vue 0 Aperçu
  • Adrian you are approved.
    Adrian you are approved.
    Haha
    1
    0 Commentaires 0 Parts 2KB Vue 0 Aperçu
  • Avaible only at PWA app from Chrome.
    Avaible only at PWA app from Chrome.
    Haha
    1
    0 Commentaires 0 Parts 6KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 6KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 5KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 9KB Vue 0 Aperçu
  • There is also APP for desktop from Chrome.

    #desktop #app #Chrome
    There is also APP for desktop from Chrome. #desktop #app #Chrome
    0 Commentaires 0 Parts 4KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 6KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 6KB Vue 0 Aperçu
  • CDEFGAHC.COM

    PWA app.

    #CDEFGAHC.COM #app
    CDEFGAHC.COM PWA app. #CDEFGAHC.COM #app
    0 Commentaires 0 Parts 5KB Vue 0 Aperçu
  • There is PWA app possible at Chrome browser.
    There is PWA app possible at Chrome browser.
    Haha
    1
    0 Commentaires 0 Parts 5KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 6KB Vue 0 Aperçu
  • https://youtu.be/fJuapp9SORA?si=w2m1KepKDZsVBBY8


    #CDEFGAHC.COM #DJFOX
    https://youtu.be/fJuapp9SORA?si=w2m1KepKDZsVBBY8 #CDEFGAHC.COM #DJFOX
    Pride
    1
    0 Commentaires 0 Parts 4KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 5KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 4KB Vue 0 Aperçu
  • 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 Commentaires 0 Parts 4KB Vue 0 Aperçu
  • Happy hour.
    Happy hour.
    Like
    1
    0 Commentaires 0 Parts 3KB Vue 0 Aperçu
Plus de résultats