<html >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
let x = 10;
let y = 20;
$(".box").mouseover(function(e){
this.myTitle = this.title;
this.title = "";
let imgTitle;
if (this.myTitle){
imgTitle = "<br />"+this.myTitle;
}
else{
imgTitle = "";
}
let hdw = "<div id='two'><img src='"+ this.href +"' alt='hdw' />"+imgTitle+"<\/div>";
$("body").append(hdw);
$("#two").css({
"left":(e.pageX+x)+"px",
"top":(e.pageY+y)+"px"
}).show("fast");
}).mouseout(function(){
this.title = this.myTitle;
$("#two").remove();
}).mousemove(function(e){
$("#two").css({
"left":(e.pageX+x)+"px",
"top":(e.pageY+y)+"px"
});
});
});
</script>
<style type="text/css">
body {
font:12px "宋体";
padding:100px;
}
img { border:none;}
#two {
border:1px solid #ccc;
background:#eee;
line-height:30px;
position:absolute;
border:5px solid #ccc;
display:none;
text-align:center;
font-size:14px;
font-weight:bold;
}
</style>
</head>
<body>
<a href="images/dt.jpg" class="box" title="风景"><img src="images/xt.PNG" alt="hdw" /></a>
</body>
</html>
网站首页 > 编程文章 正文
猜你喜欢
- 2024-08-17 扩散登录表单动画(超级表单登录)
- 2024-08-17 jQuery 事件(jquery 事件代理)
- 2024-08-17 【Chrome】浏览器Console引入Jquery
- 2024-08-17 js 实现代码复制(js复制文本代码)
- 2024-08-17 Ajax跨域问题详解(ajax实现跨域三种方法)
- 2024-08-17 html高级教程canvas操作,简单易学
- 2024-08-17 jQuery 获取和设置HTML元素(jquery获取元素的html)
- 2024-08-17 jQuery实现简易购物车功能(jsp实现简单购物车)
- 2024-08-17 用 Bootstrap4 制作响应式网页二(导航菜单)
- 2024-08-17 jquery放大镜(一)(放大镜html)
你 发表评论:
欢迎- 05-16时尚芭莎90秒|有理有据!冬装购买选色指南
- 05-16VS code使用入门(1)
- 05-16Git基本使用,分布式版本控制
- 05-16从某宝奸商淘回来的惠普ELITEBOOK 8570P,全金属好机
- 05-16Qt中添加OpenCV库
- 05-16cygwin安装skyeye所需的软件包列表
- 05-16code::blocks安装及汉化完整教程
- 05-16人人可以做程序员,CurSor编程神器!
- 最近发表
- 标签列表
-
- spire.doc (59)
- system.data.oracleclient (61)
- 按键小精灵源码提取 (66)
- pyqt5designer教程 (65)
- 联想刷bios工具 (66)
- c#源码 (64)
- graphics.h头文件 (62)
- mysqldump下载 (66)
- sqljdbc4.jar下载 (56)
- libmp3lame (60)
- maven3.3.9 (63)
- 二调符号库 (57)
- 苹果ios字体下载 (56)
- git.exe下载 (68)
- diskgenius_winpe (72)
- pythoncrc16 (57)
- solidworks宏文件下载 (59)
- qt帮助文档中文版 (73)
- satacontroller (66)
- hgcad (64)
- bootimg.exe (69)
- android-gif-drawable (62)
- axure9元件库免费下载 (57)
- libmysqlclient.so.18 (58)
- springbootdemo (64)
本文暂时没有评论,来添加一个吧(●'◡'●)