jQuery实现鼠标划过展示大图的方法
网络编程 2021-07-04 21:47www.168986.cn编程入门
这篇文章主要介绍了jQuery实现鼠标划过展示大图的方法,实例分析了jQuery操作鼠标事件及图片处理的技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了jQuery实现鼠标划过展示大图的方法。分享给大家供大家参考。具体如下
这里用css和jquery实现鼠标移上元素时大图展示,并且大图不能溢出整个div框
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://.w3./TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://.w3./1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery鼠标划过展示大图</title>
<style type="text/css">
{ margin:0; padding:0; }
body { font:12px/1.5 tahoma, arial, simsun; }
.wrap { position:relative; margin:0 auto; width:319px; height:243px; }
table { border-collapse:collapse; border-spacing:0; }
td { border:1px solid #c; background:#f0f0f0; width:80px; height:80px; }
td div { position:relative; width:100%; height:100%; background:#eee; }
td b { display:block; position:relative; z-index:20; width:20px; height:20px; background:#fff; }
td a.s { display:block; position:absolute; z-index:10; left:0; :0; height:100%; width:100%; text-indent:-999em; overflow:hidden; background:url(Images/nb/8080logo.jpg) no-repeat; }
#hideBox { display:none; position:absolute; width:140px; height:120px; background:#fff; border:1px solid #333; z-index:300; }
#hideBox a { display:block; height:100%; width:100%; }
</style>
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var wrapWidth = $(".wrap").width();
var wrapHeight = $(".wrap").height();
var boxWidth = $("#hideBox").outerWidth();
var boxHeight = $("#hideBox").outerHeight();
$("td a").mouseover(function(){
var pos = $(this).parent("div").position();
var toLeft = wrapWidth - (boxWidth + pos.left);
var toTop = wrapHeight - (boxHeight + pos.);
if(toLeft>0){
$("#hideBox").css({left:pos.left});
}
else if(toLeft<0){
$("#hideBox").css({left:wrapWidth-boxWidth});
}
if(toTop>0){
$("#hideBox").css({:pos.});
}
else if(toTop<0){
$("#hideBox").css({:wrapHeight-boxHeight});
}
$("#hideBox").show();
});
$("#hideBox").mouseout(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<div class="wrap">
<table>
<tr>
<td><div><b>15</b><a id="g1" class="s" href="#">名称1</a></div></td>
<td><div><b>16</b><a id="g2" href="#">名称2</a><br />
<a id="g3" href="#">名称3</a></div></td>
<td><div><b>15</b><a id="g3" class="s" href="#">名称1</a></div></td>
<td><div><b>15</b><a id="g4" class="s" href="#">名称1</a></div></td>
</tr>
<tr>
<td><div><b>15</b><a id="g5" class="s" href="#">名称1</a></div></td>
<td><div><b>15</b><a id="g6" class="s" href="#">名称1</a></div></td>
<td><div><b>16</b><a id="g7" href="#">名称2</a><br />
<a id="g8" href="#">名称3</a></div></td>
<td><div><b>16</b><a id="g9" href="#">名称2</a><br />
<a id="g3" href="#">名称3</a></div></td>
</tr>
<tr>
<td><div><b>16</b><a id="g11" href="#">名称2</a><br />
<a id="g12" href="#">名称3</a></div></td>
<td><div><b>16</b><a id="g13" href="#">名称2</a><br />
<a id="g14" href="#">名称3</a></div></td>
<td><div><b>15</b><a id="g15" class="s" href="#">名称1</a></div></td>
<td><div><b>15</b><a id="g16" class="s" href="#">名称1</a></div></td>
</tr>
</table>
<div id="hideBox"><a href="">大图展示</a></div>
</div>
</body>
</html>
<html xmlns="http://.w3./1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery鼠标划过展示大图</title>
<style type="text/css">
{ margin:0; padding:0; }
body { font:12px/1.5 tahoma, arial, simsun; }
.wrap { position:relative; margin:0 auto; width:319px; height:243px; }
table { border-collapse:collapse; border-spacing:0; }
td { border:1px solid #c; background:#f0f0f0; width:80px; height:80px; }
td div { position:relative; width:100%; height:100%; background:#eee; }
td b { display:block; position:relative; z-index:20; width:20px; height:20px; background:#fff; }
td a.s { display:block; position:absolute; z-index:10; left:0; :0; height:100%; width:100%; text-indent:-999em; overflow:hidden; background:url(Images/nb/8080logo.jpg) no-repeat; }
#hideBox { display:none; position:absolute; width:140px; height:120px; background:#fff; border:1px solid #333; z-index:300; }
#hideBox a { display:block; height:100%; width:100%; }
</style>
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var wrapWidth = $(".wrap").width();
var wrapHeight = $(".wrap").height();
var boxWidth = $("#hideBox").outerWidth();
var boxHeight = $("#hideBox").outerHeight();
$("td a").mouseover(function(){
var pos = $(this).parent("div").position();
var toLeft = wrapWidth - (boxWidth + pos.left);
var toTop = wrapHeight - (boxHeight + pos.);
if(toLeft>0){
$("#hideBox").css({left:pos.left});
}
else if(toLeft<0){
$("#hideBox").css({left:wrapWidth-boxWidth});
}
if(toTop>0){
$("#hideBox").css({:pos.});
}
else if(toTop<0){
$("#hideBox").css({:wrapHeight-boxHeight});
}
$("#hideBox").show();
});
$("#hideBox").mouseout(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<div class="wrap">
<table>
<tr>
<td><div><b>15</b><a id="g1" class="s" href="#">名称1</a></div></td>
<td><div><b>16</b><a id="g2" href="#">名称2</a><br />
<a id="g3" href="#">名称3</a></div></td>
<td><div><b>15</b><a id="g3" class="s" href="#">名称1</a></div></td>
<td><div><b>15</b><a id="g4" class="s" href="#">名称1</a></div></td>
</tr>
<tr>
<td><div><b>15</b><a id="g5" class="s" href="#">名称1</a></div></td>
<td><div><b>15</b><a id="g6" class="s" href="#">名称1</a></div></td>
<td><div><b>16</b><a id="g7" href="#">名称2</a><br />
<a id="g8" href="#">名称3</a></div></td>
<td><div><b>16</b><a id="g9" href="#">名称2</a><br />
<a id="g3" href="#">名称3</a></div></td>
</tr>
<tr>
<td><div><b>16</b><a id="g11" href="#">名称2</a><br />
<a id="g12" href="#">名称3</a></div></td>
<td><div><b>16</b><a id="g13" href="#">名称2</a><br />
<a id="g14" href="#">名称3</a></div></td>
<td><div><b>15</b><a id="g15" class="s" href="#">名称1</a></div></td>
<td><div><b>15</b><a id="g16" class="s" href="#">名称1</a></div></td>
</tr>
</table>
<div id="hideBox"><a href="">大图展示</a></div>
</div>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程