تضمين باستخدام علامة HTML <iframe>

لا تتردد في تضمين أدواتنا في موقع الويب الخاص بك

  1. عند وضع مقتطفات الشفرة على موقع الويب الخاص بك ، ضع في اعتبارك أن عرض الأداة على الأجهزة المحمولة يجب أن يكون كبيرًا قدر الإمكان. إذا كان عرض الأداة أقل من 300 بكسل كحد أدنى ، فسيتم عرض زر لإعادة توجيه الزوار إلى موقعنا على الويب.
  2. عندما يرسل المستخدمون النموذج ، سيتم إعادة توجيههم إلى صفحة النتائج على مضيفنا.
  3. يجب أن تحرص على إبلاغ المستخدم باستخدام ملفات تعريف الارتباط لأنها ضرورية لوظيفة موقع الويب.
  4. يجب ألا تضع أكثر من أداة واحدة في كل صفحة. سيؤدي وضع أدوات متعددة على نفس الصفحة إلى تقليل سرعة الصفحة وتجربة المستخدم.
  5. يجب وضع الأدوات فقط داخل محتوى الصفحة. من غير المقبول وضع أداة على الشريط الجانبي.

يمكن ترجمة الأدوات إلى اللغات التالية:

لغة culture-slug
الإنجليزية en

عند تغيير اللغة في عناصر واجهة المستخدم ، قم بتغيير مصدر إطار iframe وفقًا لهذا النموذج:

https://pc-builds.com/{culture-slug}/embed/{widget-type} // For example {culture-slug} is replaced with "es" for Spanish

حاسبة عنق الزجاجة

قم بتضمين الآلة الحاسبة الخاصة بنا باستخدام هذا الرمز.

<script>
    window.addEventListener('message', function(e) {
        let pcb_iframe = document.getElementById("pc-builds-bottleneck-calculator");
        if(e.data[0] == 'setFrameHeight-bottleneck-calculator') { pcb_iframe.style.height = e.data[1] + 'px'; }
    }, false);
</script>
<iframe loading="lazy" 
    src="https://pc-builds.com/ar/embed/bottleneck-calculator" 
    id="pc-builds-bottleneck-calculator" 
    style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>

معاينة


الإطارات في الثانية آلة حاسبة

قم بتضمين الإطارات الخاصة بنا في الآلة الحاسبة باستخدام هذا الرمز.

<script>
    window.addEventListener('message', function(e) {
        let pcb_iframe = document.getElementById("pc-builds-fps-calculator");
        if(e.data[0] == 'setFrameHeight-fps-calculator') { pcb_iframe.style.height = e.data[1] + 'px'; }
    }, false);
</script>
<iframe loading="lazy" 
    src="https://pc-builds.com/ar/embed/fps-calculator" 
    id="pc-builds-fps-calculator" 
    style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>

معاينة


ألعاب حاسبة عنق الزجاجة

قم بتضمين حاسبة عنق الزجاجة في اللعبة باستخدام هذا الرمز.

<script>
    window.addEventListener('message', function(e) {
        let pcb_iframe = document.getElementById("pc-builds-games-bottleneck-calculator");
        if(e.data[0] == 'setFrameHeight-games-bottleneck-calculator') { pcb_iframe.style.height = e.data[1] + 'px'; }
    }, false);
</script>
<iframe loading="lazy" 
    src="https://pc-builds.com/ar/embed/games-bottleneck-calculator" 
    id="pc-builds-games-bottleneck-calculator" 
    style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>

معاينة


حاسبة وحدة امدادات الطاقة

قم بتضمين حاسبة وحدة إمداد الطاقة الخاصة بنا باستخدام هذا الرمز.

<script>
    window.addEventListener('message', function(e) {
        let pcb_iframe = document.getElementById("pc-builds-psu-calculator");
        if(e.data[0] == 'setFrameHeight-psu-calculator') { pcb_iframe.style.height = e.data[1] + 'px'; }
    }, false);
</script>
<iframe loading="lazy" 
    src="https://pc-builds.com/ar/embed/psu-calculator" 
    id="pc-builds-psu-calculator" 
    style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>

معاينة


قارن المعالجات

عرض تضمين لمقارنة المعالج باستخدام هذا الرمز.

<script>
    window.addEventListener('message', function(e) {
        let pcb_iframe = document.getElementById("pc-builds-compare-processors");
        if(e.data[0] == 'setFrameHeight-compare-processors') { pcb_iframe.style.height = e.data[1] + 'px'; }
    }, false);
</script>
<iframe loading="lazy" 
    src="https://pc-builds.com/ar/embed/compare-processors" 
    id="pc-builds-compare-processors" 
    style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>

معاينة


قارن بطاقات الرسوميات

عرض تضمين لمقارنة بطاقة الرسوميات باستخدام هذا الرمز.

<script>
    window.addEventListener('message', function(e) {
        let pcb_iframe = document.getElementById("pc-builds-compare-graphic-cards");
        if(e.data[0] == 'setFrameHeight-compare-graphic-cards') { pcb_iframe.style.height = e.data[1] + 'px'; }
    }, false);
</script>
<iframe loading="lazy" 
    src="https://pc-builds.com/ar/embed/compare-graphic-cards" 
    id="pc-builds-compare-graphic-cards" 
    style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>

معاينة