위젯은 다음 언어로 번역될 수 있습니다.
언어 | culture-slug |
---|---|
잘어 | ar |
골어 | bn |
리뷰 | zh |
다음어어어어어어 | hr |
한국어 | en |
응 | fr |
이에 | de |
안디어 | hi |
부다페스트어 | hu |
이기어 | id |
성 | it |
이상 | ja |
한국어 | ko |
폴란드어 | pl |
엊그제 | pt |
파스텔 | ru |
프랑스 | es |
에어 | tr |
업어 | uk |
라이프어 | vi |
이에 | de |
안디어 | hi |
부다페스트어 | hu |
이기어 | id |
성 | it |
이상 | ja |
한국어 | ko |
폴란드어 | pl |
엊그제 | pt |
파스텔 | ru |
프랑스 | es |
에어 | tr |
업어 | uk |
라이프어 | vi |
위젯에서 언어를 변경할 때 다음 템플릿에 따라 iframe의 소스를 변경합니다.
https://pc-builds.com/{culture-slug}/embed/{widget-type} // For example {culture-slug} is replaced with "es" for Spanish
이 코드를 사용하여 병목 현상 계산기를 포함합니다.
<script>
function LoadPCBuildsIFrame(id){
let frame = document.getElementById(id);
frame.style.height = (frame.contentWindow.document.body.scrollHeight + 30) + 'px';
}
</script>
<iframe loading="lazy"
src="https://pc-builds.com/en/ko/embed/bottleneck-calculator"
id="pc-builds-bottleneck-calculator"
onload="LoadPCBuildsIFrame('pc-builds-bottleneck-calculator');"
style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>
이 코드를 사용하여 초당 프레임 계산기를 포함합니다.
<script>
function LoadPCBuildsIFrame(id){
let frame = document.getElementById(id);
frame.style.height = (frame.contentWindow.document.body.scrollHeight + 30) + 'px';
}
</script>
<iframe loading="lazy"
src="https://pc-builds.com/en/ko/embed/fps-calculator"
id="pc-builds-fps-calculator"
onload="LoadPCBuildsIFrame('pc-builds-fps-calculator');"
style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>
이 코드를 사용하여 게임 병목 현상 계산기를 포함합니다.
<script>
function LoadPCBuildsIFrame(id){
let frame = document.getElementById(id);
frame.style.height = (frame.contentWindow.document.body.scrollHeight + 30) + 'px';
}
</script>
<iframe loading="lazy"
src="https://pc-builds.com/en/ko/embed/games-bottleneck-calculator"
id="pc-builds-games-bottleneck-calculator"
onload="LoadPCBuildsIFrame('pc-builds-games-bottleneck-calculator');"
style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>
이 코드를 사용하여 전원 공급 장치 계산기를 포함합니다.
<script>
function LoadPCBuildsIFrame(id){
let frame = document.getElementById(id);
frame.style.height = (frame.contentWindow.document.body.scrollHeight + 30) + 'px';
}
</script>
<iframe loading="lazy"
src="https://pc-builds.com/en/ko/embed/psu-calculator"
id="pc-builds-psu-calculator"
onload="LoadPCBuildsIFrame('pc-builds-psu-calculator');"
style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>
이 코드를 사용하여 프로세서 비교를 위해 보기를 포함합니다.
<script>
function LoadPCBuildsIFrame(id){
let frame = document.getElementById(id);
frame.style.height = (frame.contentWindow.document.body.scrollHeight + 30) + 'px';
}
</script>
<iframe loading="lazy"
src="https://pc-builds.com/en/ko/embed/compare-processors"
id="pc-builds-compare-processors"
onload="LoadPCBuildsIFrame('pc-builds-compare-processors');"
style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>
이 코드를 사용하여 그래픽 카드 비교를 위한 내장 뷰.
<script>
function LoadPCBuildsIFrame(id){
let frame = document.getElementById(id);
frame.style.height = (frame.contentWindow.document.body.scrollHeight + 30) + 'px';
}
</script>
<iframe loading="lazy"
src="https://pc-builds.com/en/ko/embed/compare-graphic-cards"
id="pc-builds-compare-graphic-cards"
onload="LoadPCBuildsIFrame('pc-builds-compare-graphic-cards');"
style="overflow:hidden !important;min-height:500px !important;width:100% !important;">
</iframe>