<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<meta charset="utf-8">
<title>mouseover mouseout</title>
<style type="text/css" media="screen">
.parent{
width:200px;
height:200px;
background:black;
}
.child{
width:100px;
height:100px;
background:pink;
}
.a1{
width:40px;
height:40px;
background:orange;
display:none;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
<div class="a1"></div>
</div>
<script>
$('.parent').on('mouseover',function(e){
$('.a1').show(1000);
});
$('.parent').on('mouseout',function(e){
$('.a1').css('display','none');
});
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<meta charset="utf-8">
<title>mouseover mouseout</title>
<style type="text/css" media="screen">
.parent{
width:200px;
height:200px;
background:black;
}
.child{
width:100px;
height:100px;
background:pink;
}
.a1{
width:40px;
height:40px;
background:orange;
display:none;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
<div class="a1"></div>
</div>
<script>
$('.parent').on('mouseenter',function(e){
$('.a1').show(1000);
});
$('.parent').on('mouseleave',function(e){
$('.a1').css('display','none');
});
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<meta charset="utf-8">
<title>mouseover mouseout</title>
<style type="text/css" media="screen">
.parent{
width:200px;
height:200px;
background:black;
}
.child{
width:100px;
height:100px;
background:pink;
}
.a1{
width:40px;
height:40px;
background:orange;
display:none;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
<div class="a1"></div>
</div>
<script>
$('.parent').on('mouseover',function(e){
$('.a1').show(1000);
});
$('.parent').on('mouseout',function(e){
$('.a1').css('display','none');
});
$('.child').on('mouseover',function(e){
e.stopPropagation();
$('.a1').css('display','block');
//这是保证动画体的末状态不变
});
$('.child').on('mouseout',function(e){
e.stopPropagation();
//防止从粉色框移出到黑色框时再次触发其他事件
})
</script>
</body>
</html>
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有