jquery特效---点击图片显示大图片效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>jQuery点击图片显示大图</title>
<style type="text/css">


</style>
</head>
<body>
<div id="outerdiv" style="position:fixed;top:0;left:0;background:#000000;filter:alpha(opacity=70);opacity:0.7;z-index:2;width:100%;height:100%;display:none;">
<div id="innerdiv" style="position:absolute;">
<img id="bigimg" style="border:5px solid #fff;" src="" />
</div>
</div> 


<div><img style="width:100px;height:100px;" id="img_o" οnclick="blook('img_o')" src="img1/index_01.jpg" /></div>


<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
var console = window.console || { log: function() {} };
/**单位上传组织机构代码证以后点击图像可以查看大图*/
function blook(id){ 
//alert("执行blook方法");
var _this = $("#"+id);//将当前的pimg元素作为_this传入函数
imgShow("#outerdiv", "#innerdiv", "#bigimg", _this); 
}
function imgShow(outerdiv, innerdiv, bigimg, _this){ 
//alert("执行imgShow方法");
var src = _this.attr("src");//获取当前点击的pimg元素中的src属性
//获取当前点击图片的真实大小,并显示弹出层及大图
var realWidth, realHeight;
var temp = new Image();
temp.onload = function() {
realWidth = this.width;//获取图片真实宽度
realHeight = this.height;//获取图片真实高度
};
temp.src = src;
$(bigimg).load(
function(){ 
//alert("此句正常3");
var windowW = $(window).width();//获取当前窗口宽度
var windowH = $(window).height();//获取当前窗口高度

var imgWidth, imgHeight; 
var scale = 0.8;//缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放
//alert("此句正常5");
if(realHeight>windowH*scale) {//判断图片高度
console.log(0);
imgHeight = windowH*scale;//如大于窗口高度,图片高度进行缩放
imgWidth = imgHeight/realHeight*realWidth;//等比例缩放宽度
if(imgWidth>windowW*scale) {//如宽度扔大于窗口宽度
imgWidth = windowW*scale;//再对宽度进行缩放

} else if(realWidth>windowW*scale) {//如图片高度合适,判断图片宽度
console.log(1);
imgWidth = windowW*scale;//如大于窗口宽度,图片宽度进行缩放
imgHeight = imgWidth/realWidth*realHeight;//等比例缩放高度
} else {//如果图片真实高度和宽度都符合要求,高宽不变
console.log(2);
imgWidth = realWidth; 
imgHeight = realHeight; 

//alert("此句正常6");
console.log("imgWidth:" + imgWidth + ",imgHeight:" + imgHeight);
$(bigimg).css("width",imgWidth);//以最终的宽度对图片缩放
var w = (windowW-imgWidth)/2;//计算图片与窗口左边距
var h = (windowH-imgHeight)/2;//计算图片与窗口上边距
console.log("top:" + h + ",left:" + w);
$(innerdiv).css({"top":h, "left":w});//设置#innerdiv的top和left属性
$(outerdiv).fadeIn("fast");//淡入显示#outerdiv
}).attr("src", src); 
$(outerdiv).click(function(){//再次点击淡出消失弹出层
$(this).fadeOut("fast"); 
}); 

</script>
</body>

</html>


页面效果:



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
jQuery Picture 是一个简单易用的 jQuery 插件,用于实现图片的响应式显示和懒加载。它可以根据不同的设备屏幕大小、分辨率等信息,自动加载适合当前设备的最优化图片,从而提升页面的加载速度和用户体验。 该插件需要在页面中引入 jQuery 库,并按照一定的规则设置图片元素的属性,才能实现响应式和懒加载的效果。 以下是该插件的使用方法: 1. 在页面中引入 jQuery 库和 jQuery Picture 插件。 ```html <script src="path/to/jquery.min.js"></script> <script src="path/to/jquery.picture.min.js"></script> ``` 2. 在需要显示图片元素上设置 `data-src` 属性,其值为图片的真实地址。 ```html <img src="path/to/placeholder.jpg" data-src="path/to/image.jpg" alt=""> ``` 3. 调用 `jquery.picture()` 方法对页面中的图片元素进行初始化。 ```javascript $('img').picture(); ``` 4. 可以通过 `data-widths` 和 `data-sizes` 属性,设置不同屏幕宽度下图片的大小和显示方式。 ```html <img src="path/to/placeholder.jpg" data-src="path/to/image.jpg" data-widths="320, 640, 960, 1280" data-sizes="(max-width: 320px) 280px, (max-width: 640px) 600px, (max-width: 960px) 920px, 1280px" alt=""> ``` 其中,`data-widths` 属性指定了不同屏幕宽度下图片的宽度,多个宽度以逗号分隔;`data-sizes` 属性指定了不同屏幕宽度下图片显示方式,可以使用 CSS 中的 `max-width` 和 `width` 属性,多个规则用逗号分隔。 通过以上设置,可以针对不同屏幕宽度和分辨率,加载适合的图片大小和显示方式,从而提升页面的用户体验和性能表现。 更多的使用方法和详细说明,可以参考 jQuery Picture 官方文档:https://github.com/Abban/jquery-picture。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值