웹프로그래밍

Global It Leader!!


CSS


 
 

윈도우 크기에 따라 배경 이미지 크기 변경하기

페이지 정보

작성자 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 2,713회 작성일 20-10-22 21:42

본문

<style>
body {
background-color: #A9A5A6; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; height:100%; } #background_div {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
text-align:center;
}

#content {
position:relative;
z-index:100;
padding:10px;
width:300px;
text-align:center;
border:1px solid red;

} </style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
window.onload=function(){
 $("#background_img").height($(window).height());
 $("#background_div").width($(window).width());
 $("#background_div").height($(window).height());
 var window_width = $(window).width() - $("#content").width();
 var w = (window_width/2);
 $("#content").css("margin-left", w);
}
$(window).resize(function() {
 $("#background_img").height($(window).height());
 $("#background_div").width($(window).width());
 $("#background_div").height($(window).height());
 var window_width = $(window).width() - $("#content").width();
 var w = (window_width/2);
 $("#content").css("margin-left", w);
});
</script>

<div id="content">내용 작성하는 곳</div> <did="background_div">  <img src="배경으로 쓸 이미지" id="background_img"> <div>


창 크기를 늘리면 창 크기에 따라 배경 이미지 크기가 변경된다.

배경 이미지가 가로가 작은 사이즈의 이미지라, 세로 크기만 맞춰서 동작하도록 설정

대충 읽어보면 필요할만한데 편집해서 쓸 수 있을것이라 생각됨

댓글목록

등록된 댓글이 없습니다.

전체 72
게시물 검색
CSS 목록
번호 제목 글쓴이 조회 날짜
32 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2993 08-03
31 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2992 08-08
30 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2977 07-19
29 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2969 08-03
28 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2969 04-24
27 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2950 10-17
26 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2934 01-20
25 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2891 04-18
24 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2882 07-12
23 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2859 02-03
22 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2838 06-14
21 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2782 02-23
20 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2735 03-21
열람중 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2714 10-22
18 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2664 05-20
17 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2661 10-25
16 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2656 08-19
15 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2634 03-26
14 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2572 11-02
13 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2449 04-08