<div>
画面の左側から移動して、画面を 100% 占有したい を作成しています。私はそれをスライドさせることに問題があります。これまでの私のコードはJSFiddle Sample です。
function show(){
var website = document.getElementById('website');
website.style.left = '0%;'
} /* I know I don't have much, I did.. I just got it all wrong. */
HTML
<a href="javascript:;" onclick="show()" style="color:#999;">Superman - Wikipedia, the free encyclopedia</a>
<div id="website">
<iframe src="https://en.wikipedia.org/wiki/Superman" width="100%">
</div>
CSS
#website{
height:100%;
position:fixed;
background:#666;
width:100%;
left:100%;
}