码迷,mamicode.com
首页 > 其他好文 > 详细

鼠标放上去会变化

时间:2017-11-21 16:59:56      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:lan   cti   src   www.   标签   image   blank   doc   ready   

技术分享图片

<!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>

  技术分享图片

鼠标放上去会变化

标签:lan   cti   src   www.   标签   image   blank   doc   ready   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!