<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>opacity nice show page</title>
<style>
body { opacity:0; transition:2s all ease-in; } /* (1) */
</style>
<script>
function show(){ document.body.style.opacity = 1; } /* (2) */
</script>
</head>
<body onload="show()"> <!-- (3) -->
<iframe src="https://www.sharxly.com/" style="width:100%; height:80vh"></iframe>
<div id="main"></div>
<script>
for (i=0; i<100;i++) { document.getElementById("main").innerHTML += '<p>asdfaasdfasdfasdfasdfasdf asdfasdf asdf asdf asdf asd</p>';}
</script>
</body>
</html>