구름만드는공장

페이스북 페이지 iframe 삽입시 스크롤바 없애기 본문

창고

페이스북 페이지 iframe 삽입시 스크롤바 없애기

Paulsvee 2011. 11. 30. 09:24
반응형

페이스북에서 페이지를 생성하고,
iframe으로 원하는 웹페이지를 삽입할 때
스크롤바가 생겨서 지져분해 보일 때 아래처럼 하면 해결 됩니다~

<script src="http://connect.facebook.net/en_US/all.js"></script>

<script>
var apikey = 'your app key'
window.fbAsyncInit = function() {
FB.init({
appId : apikey,
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Canvas.setAutoResize();
};
</script>

위 스크립트는 준비한 웹페이지만큼의 iframe 길이를 알맞게 조절해주고

<body style="overflow: hidden">

이것까지 넣으면 완벽하게 스크롤바 제거~
반응형
Comments