CSS를 사용하여 iframe 효과 코드 구축_경험 교환

WBOY
풀어 주다: 2016-05-16 12:07:44
원래의
1481명이 탐색했습니다.

iframe 애플리케이션은 매우 일반적이며 두 가지 공통 요구 사항이 있습니다.

1. iframe 효과를 얻으려면 스크롤 막대를 가져오면 많은 공간을 절약할 수 있습니다.
2. 페이지를 삽입하여 프레임 연결을 구현합니다.

iframe을 사용하는 것이 불편하다면 다음과 같은 해결 방법을 사용할 수 있습니다.

Css 레이아웃을 사용하여 첫 번째 요구 사항을 구현하면 한 페이지를 절약하고 효율성을 높일 수 있습니다.
두 번째 요구 사항은 xmlhttp를 사용하여 원격으로 얻을 수 있습니다.

A. iframe을 직접 시뮬레이션

레이어를 컨테이너로 사용
#content { Overflow:auto; width:600px;}

효과 시연 소스 코드:


[Ctrl+A 모두 선택 참고: 외부 J를 도입해야 하는 경우 실행하려면 새로 고쳐야 합니다. ]

본문을 컨테이너로 사용
html { Overflow:hidden; height:100%; background:#fff; border:0;}
* html { padding:100px 0 0 100px;}
body { Overflow:scroll ; 배경:#f00 ; 위치:절대; 왼쪽:100px; 오른쪽:0;}
* 높이:100%; 🎜>효과 시연 소스 코드:


[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

B. 绝对定位模拟iframe

滚动条在外边
复制代码 代码如下:

html { overflow:hidden; border:0; height:100%; max-height:100%;} 
body { overflow:hidden; margin:0; height:100%; max-height:100%; position:relative;} 
#head { position:absolute; top:0; right:15px; width:100%; height:100px; background:#f00; z-index:2;} 
#foot { position:absolute; bottom:0; right:15px; width:100%; background:#f00; height:50px;z-index:2;} 
#content { height:100%; position:relative; z-index:1; overflow:auto;} 

效果代码演示

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

滚动条在里边
复制代码 代码如下:

html { height:100%; max-height:100%; border:0; overflow:hidden;} 
* html { padding:100px 0 50px 0;} 
body { height:100%; max-height:100%; margin:0; overflow:hidden;} 
#content { position:absolute; top:100px; bottom:50px; left:0; right:0; z-index:3; width:100%; overflow:auto;} 
* html #content { top:100px; bottom:0; height:100%;} 
#head { position:absolute; margin:0; top:0; left:0; width:100%; height:100px; background:#f00; z-index:5;} 
#foot { position:absolute; margin:0; bottom:0; left:0; width:100%; height:50px; z-index:5; background:#f00;} 

效果演示代码:

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿