<!
DOCTYPE
html
>
<
html
lang
="
en
"
>
<
head
>
<
title
>Document
</
title
>
<
script
src
="
js/jquery.min.js
"
>
<
/
script
>
<
STYLE
>
.
div3
{
background
:
red
;
width
:
100
px
;
height
:
100
px
;
position
:
relative
;
overflow
:
hidden
}
.
div4
{
background
:
green
;
width
:
50
px
;
height
:
50
px
;
position
:
absolute
;
top
:
-40
px
}
<
/
STYLE
>
</
head
>
<
body
>
<
div
class
="
div3
"
><
div
class
="
div4
"
></
div
></
div
>
<
script
>
// $(".div3").mouSEOver(function(){
// $(".div4").stop().animate({
// top:0
// },500)//子元素会受到冒泡机制影响,放到子元素上的时候会触发事件,stop()并不能完全阻止
// }).mouSEOut(function(){
// $(".div4").stop().animate({
// top:‘-40px‘
// },500)
// })
$(
function
(){
$(
"
.div3
")
.
mouseenter(
function
(){
// 子元素不会触发父元素的事件
$(
"
.div4
")
.
animate(
{
top
:
0
},
500)
})
.
mousel(
function
(){
$(
"
.div4
")
.
animate(
{
top
:
‘
-40px
‘
},
500)
})
})
<
/
script
>
</
body
>
</
html
>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。