How to scale the link open in iframe

Hello, i was wondering about how to scale the size of page open in iframe. If i put the link manually it can be done like this :

#wrap { width: 1620px; height: 3500px; padding: 0; position:relative; left:-100px; top:0px; overflow: hidden; } #frame { width: 1620px; height: 3500px; position:relative; left:-65px; top:0px; } #frame { -ms-zoom: 0.7; -moz-transform: scale(0.7); -moz-transform-origin: 0px 0; -o-transform: scale(0.7); -o-transform-origin: 0 0; -webkit-transform: scale(0.7); -webkit-transform-origin: 0 0; }

but since i want the page to open different dynamic page i have to link it from here :

$w.onReady( function ()
{
let item = $w( “#dynamicDataset” ).getCurrentItem().iFrameDynamic ;
//let siteURL = $w(‘#dynamicDataset’).getCurrentItem().siteURL;
$w( “#html1” ).src = item ;
});

And now, my problem is, i cant scale the page from , or maybe i could find the code. Anyone can help me? Thanks before!

The HtmlComponent cannot be scaled. Also, you cannot access the DOM on a Wix page - accessing document elements such as div, span, button, etc is off-limits. The way to access elements on the page is only through $w.

I just want to make sure and double check, So i can scale the page from HTML, but i cant scale the page if it was given from wix code?

Sorry for the bad explanation of corvid wix