• 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 评论 0 共享 3K 视图 0 评论
  • 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 评论 0 共享 10K 视图 0 评论
  • 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 评论 0 共享 11K 视图 0 评论
  • 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 评论 0 共享 10K 视图 0 评论
  • New users has been approved.
    New users has been approved.
    Yay
    1
    0 评论 0 共享 3K 视图 0 评论
  • 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 评论 0 共享 11K 视图 0 评论
  • 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 评论 0 共享 5K 视图 0 评论
  • 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 评论 0 共享 11K 视图 0 评论
  • Adrian you are approved.
    Adrian you are approved.
    Haha
    1
    0 评论 0 共享 2K 视图 0 评论
  • Avaible only at PWA app from Chrome.
    Avaible only at PWA app from Chrome.
    Haha
    1
    0 评论 0 共享 6K 视图 0 评论
  • 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 评论 0 共享 6K 视图 0 评论
  • 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 评论 0 共享 5K 视图 0 评论
  • 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 评论 0 共享 8K 视图 0 评论
  • There is also APP for desktop from Chrome.

    #desktop #app #Chrome
    There is also APP for desktop from Chrome. #desktop #app #Chrome
    0 评论 0 共享 4K 视图 0 评论
  • 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 评论 0 共享 6K 视图 0 评论
  • 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 评论 0 共享 6K 视图 0 评论
  • CDEFGAHC.COM

    PWA app.

    #CDEFGAHC.COM #app
    CDEFGAHC.COM PWA app. #CDEFGAHC.COM #app
    0 评论 0 共享 4K 视图 0 评论
  • There is PWA app possible at Chrome browser.
    There is PWA app possible at Chrome browser.
    Haha
    1
    0 评论 0 共享 5K 视图 0 评论
  • 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 评论 0 共享 6K 视图 0 评论
  • https://youtu.be/fJuapp9SORA?si=w2m1KepKDZsVBBY8


    #CDEFGAHC.COM #DJFOX
    https://youtu.be/fJuapp9SORA?si=w2m1KepKDZsVBBY8 #CDEFGAHC.COM #DJFOX
    Pride
    1
    0 评论 0 共享 4K 视图 0 评论
  • 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 评论 0 共享 4K 视图 0 评论
  • 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 评论 0 共享 4K 视图 0 评论
  • 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 评论 0 共享 4K 视图 0 评论
  • Happy hour.
    Happy hour.
    Like
    1
    0 评论 0 共享 3K 视图 0 评论
更多结果