الرئيسية
البحث
Menu
الحسابات
ترقية الحساب
المحفظة: €0.00
الإعدادات
تسجيل الدخول
إختصارات لوحة المفاتيح
Theme Switcher
وضع النهار
CDEFGAHC.COM CDEFGAHC.COM
نتائج البحث
عرض كل النتائج
  • انضم إلينا
    تسجيل الدخول
    البحث
    Theme Switcher
    وضع النهار
    الباقات
    FAQ

البحث

إكتشاف أشخاص جدد وإنشاء اتصالات جديدة وصداقات جديدة

  • أخر الأخبار
  • استكشف
  • الصفحات
  • المجموعات
  • المناسبات
  • المدونات
  • التمويل
  • مفاوضاتي
  • وظائف
  • Courses
  • الافلام
  • الألعاب
  • المطوريين
  • أخر الأخبار
  • استكشف
  • الصفحات
  • المجموعات
  • المناسبات
  • المدونات
  • التمويل
  • مفاوضاتي
  • وظائف
  • Courses
  • الافلام
  • الألعاب
  • المطوريين
  • المنشورات
  • المدونات
  • المستخدمون
  • الصفحات
  • المجموعات
  • المناسبات
  • Maciej Soroczyński
    2025-05-03 12:17:15 -
    In near future will code custom context right click menu.
    In near future will code custom context right click menu.
    0 التعليقات 0 المشاركات 3كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-05-03 11:45:24 -
    @media (max-width: 768px) {

    element {
    attribiute: value;
    }}

    Just be sure about this }} at ending.

    Need to code this for all of CSS for NO AUTOHIDE.

    #media #CSS #for #mobile
    @media (max-width: 768px) { element { attribiute: value; }} Just be sure about this }} at ending. Need to code this for all of CSS for NO AUTOHIDE. #media #CSS #for #mobile
    Yay
    1
    0 التعليقات 0 المشاركات 9كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-05-01 17:32:58 -
    CSS CODE for Google Chrome Browser to avoid AUTO HIDE:

    #CSS #Google #Chrome #switch #off #autohide #address #bar

    ::-webkit-scrollbar {
    width: 1px;
    }
    ::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 1px solid transparent;
    background-clip: content-box;
    }
    ::-webkit-scrollbar-thumb:hover {
    background-color: #bdbdbd;
    }

    html,
    body {
    height: 100%;
    margin: 0;
    }
    html {
    overflow: hidden;
    }
    body {
    overflow-y: auto;
    }
    CSS CODE for Google Chrome Browser to avoid AUTO HIDE: #CSS #Google #Chrome #switch #off #autohide #address #bar ::-webkit-scrollbar { width: 1px; } ::-webkit-scrollbar-thumb { background-color: #d6dee1; border-radius: 20px; border: 1px solid transparent; background-clip: content-box; } ::-webkit-scrollbar-thumb:hover { background-color: #bdbdbd; } html, body { height: 100%; margin: 0; } html { overflow: hidden; } body { overflow-y: auto; }
    Yay
    1
    0 التعليقات 0 المشاركات 16كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-05-01 12:31:28 -
    Update

    Small rainbow spinner all img loader.

    Flush your DATA.

    Now need to CODE to works under infinity scroll.

    #update #spinner
    Update Small rainbow spinner all img loader. Flush your DATA. Now need to CODE to works under infinity scroll. #update #spinner
    0 التعليقات 0 المشاركات 10كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-04-30 18:12:04 -
    For vibration I use:

    var elem = document.getElementsByTagName('a');
    for(var i = 0; i < elem.length; i++) {
    elem[i].addEventListener('click', function(){

    navigator.vibrate(100);

    }, false);
    }

    var elem = document.getElementsByTagName('button');
    for(var i = 0; i < elem.length; i++) {
    elem[i].addEventListener('click', function(){

    navigator.vibrate(100);

    }, false);
    }

    var elem = document.getElementsByTagName('i');
    for(var i = 0; i < elem.length; i++) {
    elem[i].addEventListener('click', function(){

    navigator.vibrate(100);

    }, false);
    }

    var elem = document.getElementsByTagName('img');
    for(var i = 0; i < elem.length; i++) {
    elem[i].addEventListener('click', function(){

    navigator.vibrate(100);

    }, false);
    }

    var elem = document.getElementsByTagName('svg');
    for(var i = 0; i < elem.length; i++) {
    elem[i].addEventListener('click', function(){

    navigator.vibrate(100);

    }, false);
    }


    function vibrate() {

    navigator.vibrate(100);
    }


    This is AUTO and MANUAL onclick

    #JavaScript #vibrations #CODE
    For vibration I use: var elem = document.getElementsByTagName('a'); for(var i = 0; i < elem.length; i++) { elem[i].addEventListener('click', function(){ navigator.vibrate(100); }, false); } var elem = document.getElementsByTagName('button'); for(var i = 0; i < elem.length; i++) { elem[i].addEventListener('click', function(){ navigator.vibrate(100); }, false); } var elem = document.getElementsByTagName('i'); for(var i = 0; i < elem.length; i++) { elem[i].addEventListener('click', function(){ navigator.vibrate(100); }, false); } var elem = document.getElementsByTagName('img'); for(var i = 0; i < elem.length; i++) { elem[i].addEventListener('click', function(){ navigator.vibrate(100); }, false); } var elem = document.getElementsByTagName('svg'); for(var i = 0; i < elem.length; i++) { elem[i].addEventListener('click', function(){ navigator.vibrate(100); }, false); } function vibrate() { navigator.vibrate(100); } This is AUTO and MANUAL onclick #JavaScript #vibrations #CODE
    0 التعليقات 0 المشاركات 7كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-04-30 17:46:47 -
    About priority in CSS it's

    element {
    example: something !important;

    it's about !important if there is other code for this somwhere and need to be rewrited in CUSTOM CSS or something.

    #CSS
    About priority in CSS it's element { example: something !important; it's about !important if there is other code for this somwhere and need to be rewrited in CUSTOM CSS or something. #CSS
    0 التعليقات 0 المشاركات 6كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-04-30 17:38:20 -
    Is something in this that:

    C ==> HTML
    C++ ==> CSS

    #CODE
    Is something in this that: C ==> HTML C++ ==> CSS #CODE
    Pride
    1
    0 التعليقات 0 المشاركات 5كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-04-30 16:55:03 -
    Zoom "web" works with:
    body {
    touch-action: auto; }

    And good meta viewport:

    In my case just simple:

    <meta name="viewport" content="width=device-width, initial-scale=1">

    #web #zoom #CODE
    Zoom "web" works with: body { touch-action: auto; } And good meta viewport: In my case just simple: <meta name="viewport" content="width=device-width, initial-scale=1"> #web #zoom #CODE
    0 التعليقات 0 المشاركات 5كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2025-01-10 19:21:33 -
    The thing about computer is about knowledge to known and have this source code about swithin on the CPU and computer about kernel and more the OS, or just splash page or something. There is architecture of CPU and for this one need to be this one.

    #CPU #kernel
    The thing about computer is about knowledge to known and have this source code about swithin on the CPU and computer about kernel and more the OS, or just splash page or something. There is architecture of CPU and for this one need to be this one. #CPU #kernel
    0 التعليقات 0 المشاركات 6كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-25 11:08:09 -
    Custom music player will be in new line.

    Need to code it with 'START song from the begining too' button.

    <| this one

    Yeah, maybe you will be not able to change station and will be for countrys.

    For sure some tracks will play or full albums too.

    And for your own profile and page will be your music.

    Yes.
    Custom music player will be in new line. Need to code it with 'START song from the begining too' button. <| this one Yeah, maybe you will be not able to change station and will be for countrys. For sure some tracks will play or full albums too. And for your own profile and page will be your music. Yes.
    0 التعليقات 0 المشاركات 10كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-25 10:32:11 -
    Mouse cursor has some lags. Will try to move the code more higher.
    Mouse cursor has some lags. Will try to move the code more higher.
    0 التعليقات 0 المشاركات 2كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-22 23:50:01 -
    Tommorow will try to code swipe photos for lightbox.
    Tommorow will try to code swipe photos for lightbox.
    0 التعليقات 0 المشاركات 4كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-22 21:39:01 -
    Example code for BBC Radio 1.

    <audio autoplay id="myAudio">
    <source src="https://as-hls-ww.live.cf.md.bbci.co.uk/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8" type="audio/mpeg">
    </audio>
    Example code for BBC Radio 1. <audio autoplay id="myAudio"> <source src="https://as-hls-ww.live.cf.md.bbci.co.uk/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8" type="audio/mpeg"> </audio>
    0 التعليقات 0 المشاركات 6كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-22 21:32:38 -
    Example script code for toogle on and off music.

    <script type="text/javascript">
    var myAudio = document.getElementById("myAudio");

    var isPlaying = true;

    function togglePlay() {
    isPlaying ? myAudio.pause() : myAudio.play();
    };

    myAudio.onplaying = function() {
    isPlaying = true;
    };
    myAudio.onpause = function() {
    isPlaying = false;
    };
    </script>
    Example script code for toogle on and off music. <script type="text/javascript"> var myAudio = document.getElementById("myAudio"); var isPlaying = true; function togglePlay() { isPlaying ? myAudio.pause() : myAudio.play(); }; myAudio.onplaying = function() { isPlaying = true; }; myAudio.onpause = function() { isPlaying = false; }; </script>
    0 التعليقات 0 المشاركات 9كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-12 19:21:09 -
    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 المشاركات 10كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-10 20:04:09 -
    CODEMASTER
    CODEMASTER
    Pride
    1
    0 التعليقات 0 المشاركات 2كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-12-10 19:47:56 -
    CSS code for your own cursor from url:

    * {
    cursor: url("https://example.com/img/cursor.cur"), auto !important;
    }

    #css #your #own #cursor #for #website #www #CODE
    CSS code for your own cursor from url: * { cursor: url("https://example.com/img/cursor.cur"), auto !important; } #css #your #own #cursor #for #website #www #CODE
    Here
    1
    0 التعليقات 0 المشاركات 11كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • CDEFGAHC.COM
    2024-12-01 16:35:41 -
    Pages and groups will be close till time I will code the limit of groups and pages for each paid plan.

    You won't to be able to make unlimited pages and groups with any of paid plan.
    Pages and groups will be close till time I will code the limit of groups and pages for each paid plan. You won't to be able to make unlimited pages and groups with any of paid plan.
    0 التعليقات 0 المشاركات 7كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • Maciej Soroczyński
    2024-09-18 16:59:39 -
    https://www.youtube.com/watch?v=WsMhXmCEQUc

    Beastie Boys ft. Santigold - Don't Play No Game That I Can't Win

    QR CODE

    #qr #qrcode #CDEFGAHC.COM
    https://www.youtube.com/watch?v=WsMhXmCEQUc Beastie Boys ft. Santigold - Don't Play No Game That I Can't Win QR CODE #qr #qrcode #CDEFGAHC.COM
    0 التعليقات 0 المشاركات 8كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
  • CDEFGAHC.COM
    2024-08-05 15:56:08 -
    This rain of colors gonna be for people with no account all the time.


    #rainbow

    PS when I code it fully #if
    This rain of colors gonna be for people with no account all the time. #rainbow PS when I code it fully #if
    Wave
    1
    0 التعليقات 0 المشاركات 10كيلو بايت مشاهدة 0 معاينة
    الرجاء تسجيل الدخول , للأعجاب والمشاركة والتعليق على هذا!
إعلان مُمول
Today SPONSOR is Mr. Maciej Soroczyński.
الأكثر رواجاَ
#Europa 1 المنشورات
© 2025 CDEFGAHC.COM Arabic
Polish Ukrainian Norwegian Finnish Japan Chinese Swedish Czech English Arabic French Spanish Portuguese Deutsch Turkish Dutch Italiano Russian Romaian Portuguese (Brazil) Greek
  • الروابط
  • الشروط
  • الخصوصية
  • اتصل بنا
  • الدليل
الأكثر رواجاَ
#Europa 1 المنشورات
  • أخر الأخبار
  • استكشف
  • الصفحات
  • المجموعات
  • المناسبات
  • المدونات
  • التمويل
  • مفاوضاتي
  • وظائف
  • Courses
  • الافلام
  • الألعاب
  • المطوريين