ABOUT

This is an example web page to show how selapt.com embed to site function works.

Това е примерна страница за демонстрация на това как работи вграждането в уеб сайт на репрезентации генерирани от selapt.com

EMBED DEMO

Here is where selapt.com frame is inserted. To do so, we have added those two lines of code bellow to web page.
We auto-generate that code for you, you just have to copy and paste it where you want representation to be. We have also added the auto-generated script to make the content responsive.

Тук е вмъкната репрезентацията генерирана от платформата selapt.com. За да я заредим в страницата, добавихме два реда код, който сме показали по-долу. Този код се генерира автоматично, Вие само трябва да го копирате там където искате да е тази репрезентация. Наред с това добавихме и скрипта, който също се генерира автоматично и следи за ширината и дължината на показвания iframe.



Примерен код / Example code:



<iframe src="https://www.selapt.com/iframe/demo/demo-rental-building/"
                        width="1100" height="900" frameborder="0" id="selapt-iframe-3" ></iframe>
                
<script type='text/javascript'>
let iFrame3 = document.getElementById('selapt-iframe-3');

// height control
function handleHeight3(event3) {
    let height3 = parseInt(event3.data);
    if (isNaN(height3)) {
        iFrame3.height = 900;
    } else {
    iFrame3.height = height3 + 100;
    }
}

window.addEventListener('message', handleHeight3, false);
// width control
let width3 = window.document.documentElement.clientWidth;
if (width3 < 1100) {
iFrame3.width = width3 - 50;
}
</script>
                    


Switch Language

FOR DEVELOPERS:
You may also force certain language by submiting POST request to https://www.selapt.com/iframe/lang/ or https://www.selapt.com/iframe/lang-redirect/ First one will return 'OK' and second one will redirect back referer page if referer header is present. Else it will also return 'OK'.



Example with redirect


Example withOUT redirect