일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 인터넷
- 클라우드
- projectcld
- 천명에게축복받기프로젝트
- 천명에게축복받기
- 포토샵
- 구름만드는공장
- 1000명에게축복받기
- 구름
- 포토샵cs4
- iclfac
- 축복
- 프로젝트 축복
- 포토샵강좌
- Photoshop
- cloud
- 프로젝트 클라우드
- 인터넷강좌
- icloudfactory
- 축복나눔
- Photoshop CS4
- 김팀
- 당신의꿈은무엇입니까?
- 축복해요
- 소통
- iclfac.com
- 클라우드 프로젝트
- 프로젝트클라우드
- 프로젝트
- 구름상자
Archives
- Today
- Total
구름만드는공장
페이스북 페이지 iframe 삽입시 스크롤바 없애기 본문
반응형
페이스북에서 페이지를 생성하고,
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>
<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