首页 > 其他 > 详细

鼠标放上去会变化

时间:2017-11-21 16:38:40      阅读:235      评论:0      收藏:0      [点我收藏+]

技术分享图片

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
        a {
        	width:50px;height:50px;display:block;text-decoration: none;margin:100px auto;
        }
        .sp1 {
        	display:block;
        }
        .sp1  img {
        	width:100%;
        	display:block;  /*  img标签有个3px的bug,如果不加这个句话,会有bug ,测试一下就知道了 */
        }
        .sp2 {
        	display:none;width:50px;height:50px;background-color: #f39800;color:#fff;text-align:center;line-height: 50px;
        }
	</style>
</head>
<body>
	<a href="http://www.baidu.com"  target="_blank">
		<span class="sp1">
		    <img src="lapin.png" >			
		</span>
		<span class="sp2">
			 辣品
		</span>
	</a>
</body>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
   $(document).ready(function(){
         $(‘a‘).hover(function(){
             $(this).find(".sp2").css("display","block");
             $(this).find(‘.sp1‘).css(‘display‘,‘none‘);
         },function(){
         	$(this).find(‘.sp1‘).css(‘display‘,‘block‘);
         	$(this).find(‘.sp2‘).css(‘display‘,‘none‘);
         })
   })
</script>
</html>

  技术分享图片

鼠标放上去会变化

原文:http://www.cnblogs.com/agansj/p/7873653.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!