>  기사  >  웹 프론트엔드  >  css实现全屏背景_html/css_WEB-ITnose

css实现全屏背景_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-21 09:00:021071검색

核心代码:

body{  background: url(../img/background-photo.jpg) no-repeat center center fixed;  -webkit-background-size: cover;   -moz-background-size: cover;   -o-background-size: cover;   background-size: cover;  }

这种方法只支持Safari 3+,Chrome+,IE 9+, Opera 10+, FireFox 3.6+的浏览器。 
具体的请移步这里,国外的一篇文章,有详细的方法介绍: 
  http://css-tricks.com/perfect-full-page-background-image/ 

这篇文章里的一个示例(这种方法支持的比较好,经测试支持IE7,不支持IE6): 
  http://css-tricks.com/examples/FullPageBackgroundImage/css-1.php 

文章的另一个示例(用jQuery实现,支持IE7+ / Chrome / FireFox / Opera / Safari,但不支持IE6): http://css-tricks.com/examples/FullPageBackgroundImage/jquery.php

另外附上相关案例和插件供参考:

一个全屏背景图片网站:http://ringvemedia.com/,不过这个是用Mootools实现的,兼容IE6/7。

jQuery插件@jquery-backstretch: 
http://srobbin.com/jquery-plugins/backstretch/#demo

http://paulmason.name/media/demos/full-screen-background-image/  (这个不支持IE6)


另一篇教程文章: 
http://www.alistapart.com/articles/supersize-that-background-please/ 

相关阅读:

22个用全屏背景图片的网站:
http://www.awwwards.com/22-css-websites-with-fullscreen-backgrounds.html

HTML5浏览器全屏API示例:
http://blogs.sitepointstatic.com/examples/tech/full-screen/index.html


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.