欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

jquery预览图片实现鼠标放上去显示实际大小

时间:2021-01-04 16:15:01|栏目: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=UTF-8" />
<title>jQuery图片预览-jQuery在线演示-jQuery学习</title>
<link href="http://www.jquery001.com/css/Stylesheet_min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<style type="text/css">
img
{
border: none;
}


ul, li
{
margin: 0;
padding: 0;
}


li
{
list-style: none;
float: left;
display: inline;
margin-right: 10px;
}


#imglist img
{
width: 150px;
height: 120px;
}


#imgshow
{
position: absolute;
border: 1px solid #ccc;
background: #333;
padding: 5px;
color: #fff;
display: none;
}
</style>
<script type="text/javascript">
var ShowImage = function () {
xOffset = 10;
yOffset = 30;
$("#imglist").find("img").hover(function (e) {
$("<img id='imgshow' src='" + this.src + "' />").appendTo("body");
//下面是两种样式赋值方法
//$("#imgshow").css("top", (e.pageY - xOffset) + "px").css("left", (e.pageX + yOffset) + "px").fadeIn("slow");
$("#imgshow").css({"top":(e.pageY - xOffset) + "px","left":(e.pageX + yOffset) + "px"}).fadeIn("slow");
}, function () {
$("#imgshow").remove();
});
};


jQuery(document).ready(function () {
ShowImage();
});
</script>


</head>
<body>
<div id="page-wrap">
<div id="content-wrap">
<div id="content-left" class="demo">
<ul id="imglist">
<li><a>
<img src="http://g.hiphotos.baidu.com/image/w%3D2048/sign=0a53d9eca1cc7cd9fa2d33d90d39203f/35a85edf8db1cb13efa8fe12df54564e93584bea.jpg" alt="图片" /></a></li>
<li><a>
<img src="http://a0.att.hudong.com/70/44/14300000029584127555444098375.jpg" alt="图片" /></a></li>
</ul>
</div>
</div>


</div>
</body>
</html>

上一篇:jQuery实现右侧显示可向左滑动展示的深色QQ客服效果代码

栏    目:jquery

下一篇:Jquery 自定义动画概述及示例

本文标题:jquery预览图片实现鼠标放上去显示实际大小

本文地址:http://www.codeinn.net/misctech/40560.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有