固定网页背景图同时保持图片比例的思路代码


Posted in Javascript onAugust 15, 2013

提供一个背景图片策略:

1,背景图片固定

2,随窗口大小改变而改变大小

3,保持比例不变而缩放

支持浏览器:IE 6,7,8,9+ ,FF,Chrome

演示地址:http://www.einino.net/bg_image.html

<style> 
body{margin:0; padding:0;height:2000px; } 
#background_img{ 
top:expression(documentElement.scrollTop); /*we need this expression to fixed the top*/ 
} 
</style>

/** 
*@desc make a fixed background image. resize the image to fit the window size besides do not lost the image's proportion 
*@author EI Nino 
*2013/8/15 
*/ 
var imgBackground=function(_img_obj) 
{ 
this.img = _img_obj; 
this.init(); 
} 
imgBackground.prototype={ 
init:function(){ 
this.img.style.top="0"; 
this.img.style.left="0"; 
if(navigator.appVersion.indexOf('MSIE 6.0')>0){ 
this.img.style.position="absolute"; 
this.img.style.bottom="auto"; 
if(!document.body.style.backgroundImage){//esacpe the flash when scroll the window in IE 6 
document.body.style.backgroundImage="url(about:blank)"; 
document.body.style.backgroundAttachment="fixed"; 
} 
} 
else{ 
this.img.style.position="fixed"; 
} 
this.ra = this.img.width/this.img.height; 
this.resize(); 
this.BindEvent(); 
}, 
resize:function() { 
var self=this; 
if((document.documentElement.clientWidth /document.documentElement.clientHeight )>=self.ra) 
{ 
self.img.style.width=document.documentElement.clientWidth+"px"; 
self.img.style.height=""; 
} 
else{ 
self.img.style.width=""; 
self.img.style.height=document.documentElement.clientHeight +"px"; 
} 
}, 
GetStyle:function(_obj,_style){ 
var obj = _obj; 
return obj.currentStyle? obj.currentStyle[_style] :window.getComputedStyle(obj, null)[_style]; 
}, 
BindEvent:function(){ 
var self = this; 
$(window).resize(function(){//use jquery lib 
self.resize(); 
}); 
} 
}; 
new imgBackground(document.getElementById("background_img"));
Javascript 相关文章推荐
javascript模拟的Ping效果代码 (Web Ping)
Mar 13 Javascript
jQuery获得内容和属性方法及示例
Dec 02 Javascript
jQuery拖拽 &amp; 弹出层 介绍与示例
Dec 27 Javascript
关于JS中match() 和 exec() 返回值和属性的测试
Mar 21 Javascript
微信小程序 教程之数据绑定
Oct 18 Javascript
深入浅析Vue组件开发
Nov 25 Javascript
React Native悬浮按钮组件的示例代码
Apr 05 Javascript
vue中post请求以a=a&amp;b=b 的格式写遇到的问题
Apr 27 Javascript
javascript中UMD规范的代码推演
Aug 29 Javascript
JSON基本语法及与JavaScript的异同实例分析
Jan 04 Javascript
Vue2.0+Vux搭建一个完整的移动webApp项目的示例
Mar 19 Javascript
JS访问对象两种方式区别解析
Aug 29 Javascript
jQuery UI 实现email输入提示实例
Aug 15 #Javascript
javascript中如何处理引号编码&amp;#034;
Aug 15 #Javascript
Jquery中val()表单取值赋值的实例代码
Aug 15 #Javascript
jquery ajax方式直接提交整个表单核心代码
Aug 15 #Javascript
js冒泡法和数组转换成字符串示例代码
Aug 14 #Javascript
js实现无需数据库的县级以上联动行政区域下拉控件
Aug 14 #Javascript
Extjs3.0 checkboxGroup 动态添加item实现思路
Aug 14 #Javascript
You might like
SONY SRF-M100的电路分析
2021/03/02 无线电
PHP程序级守护进程的实现与优化的使用概述
2013/05/02 PHP
thinkphp5+layui实现的分页样式示例
2019/10/08 PHP
jquery tools之tabs 选项卡/页签
2009/07/25 Javascript
让人期待的2011年度最佳 jQuery 插件分享
2012/03/16 Javascript
javascript 构造函数强制调用经验总结
2012/12/02 Javascript
javascript中的delete使用详解
2013/04/11 Javascript
jquery跨域请求示例分享(jquery发送ajax请求)
2014/03/25 Javascript
JS控制网页动态生成任意行列数表格的方法
2015/03/09 Javascript
jQuery实现简单的列表式导航菜单效果代码
2015/08/31 Javascript
JS获得多个同name 的input输入框的值的实现方法
2017/01/09 Javascript
vue-router:嵌套路由的使用方法
2017/02/21 Javascript
面试常见的js算法题
2017/03/23 Javascript
Angular中$state.go页面跳转并传递参数的方法
2017/05/09 Javascript
Nodejs+angularjs结合multiparty实现多图片上传的示例代码
2017/09/29 NodeJs
Vue封装Swiper实现图片轮播效果
2018/02/06 Javascript
解决iview table组件里的 固定列 表格不自适应的问题
2020/11/13 Javascript
[02:27]DOTA2英雄基础教程 莱恩
2014/01/17 DOTA
详解Python中用于计算指数的exp()方法
2015/05/14 Python
利用Anaconda完美解决Python 2与python 3的共存问题
2017/05/25 Python
python 使用socket传输图片视频等文件的实现方式
2019/08/07 Python
python中web框架的自定义创建
2019/09/08 Python
numpy按列连接两个维数不同的数组方式
2019/12/06 Python
python中设置超时跳过,超时退出的方式
2019/12/13 Python
HTML5使用DOM进行自定义控制示例代码
2013/06/08 HTML / CSS
详解HTML5布局和HTML5标签
2020/10/26 HTML / CSS
挪威手表购物网站:Klokker
2016/09/19 全球购物
工商管理本科毕业生求职信范文
2013/10/05 职场文书
秋季红领巾广播稿
2014/01/27 职场文书
经典婚礼主持词
2014/03/13 职场文书
主持人开幕词
2015/01/29 职场文书
狮子林导游词
2015/02/03 职场文书
复活读书笔记
2015/06/29 职场文书
分家协议书范本
2016/03/22 职场文书
React forwardRef的使用方法及注意点
2021/06/13 Javascript
Spring Boot 的创建和运行示例代码详解
2022/07/23 Java/Android