我正在为朋友建立一个网站,而.animate遇到了一些麻烦
在.mouseenter上,div的div值应增加约5%,并向右滑动,与黑色div相同,但反之,然后在.mouseleave上返回其原始状态。
我已经设法做到这一点,但是如果您从金色悬停为黑色,动画将返回到原始格式,然后开始第二个动画。
使用jquery,如何使这种过渡变得顺利?
除了动画在mouseEnters之间断断续续的事实之外,我目前已经正确设置了动画
$(document).ready(function(){
//Gold Overlay Animation//
$('#overlay-gold').mouseenter(function(){
$('#overlay-gold').animate({
width: '55%'
})
$('#overlay-black').animate({
width: '45%',
left: '55%'
})
})
$('#overlay-gold').mouseleave(function(){
$('#overlay-gold').animate({
width: '50%'
})
$('#overlay-black').animate({
width: '50%',
left: '50%'
})
})
//Black Overlay Animation//
$('#overlay-black').mouseenter(function(){
$('#overlay-gold').animate({
width: '45%',
left: '0'
})
$('#overlay-black').animate({
width: '55%',
left: '45%'
})
})
$('#overlay-black').mouseleave(function(){
$('#overlay-gold').animate({
width: '50%',
left: '0'
})
$('#overlay-black').animate({
width: '50%',
left: '50%'
})
})
});
<!-- begin snippet: js hide: false console: true babel: false -->
html, body {
padding:0;
margin:0;
}
#landing {
background-image: url("images/background-mobile.jpg");
width:100%;
height:100vh;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
box-sizing: border-box;
position: absolute;
}
#title {
position: relative;
padding:0;
margin:0;
color: rgb(219, 208, 208);
z-index: 3;
width: 100%;
text-align: center;
top: 45vh;
font-size: 3em;
text-shadow: 2px 2px 4px #000000;
}
#about {
color: rgb(0,0,0);
text-align: center;
position:absolute;
top: 50%;
left: 50%;
transform: translateX(-50%);
margin: 0;
padding: 0;
cursor: pointer;
}
#gallery {
color: rgb(235,215,0);
text-align: center;
position:absolute;
top: 50%;
left: 50%;
transform: translateX(-50%);
margin: 0;
padding: 0;
cursor: pointer;
}
#overlay-black {
position: absolute;
width: 100%;
height: 50%;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.5);
z-index: 2;
cursor: pointer;
}
#overlay-gold {
position: absolute;
width: 100%;
height: 50%;
top: 0;
right: 0;
left:0;
background-color: rgba(235,215,0,0.5);
z-index: 2;
cursor: pointer;
}
@media (min-width: 992px) {
#landing {
background-image: url("images/background.jpg");
}
#overlay-black {
top:0;
width:50%;
height:100%;
left: 50vw;
}
#overlay-gold {
bottom:0;
width: 50%;
height:100%;
}
#title {
position: relative;
padding:0;
margin:0;
color: rgb(219, 208, 208);
z-index: 3;
width: 100%;
text-align: center;
margin-top: 1em;
font-size: 3em;
top: 0;
}
#about {
top: 50%;
left: 50%;
}
#gallery {
top: 50%;
left: 50%;
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="standard.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="main.js"></script>
<title>Bobby T Sports Art</title>
</head>
<body>
<div id="landing">
<div>
<h1 id="title">Bobby T Sports Art</h1>
</div>
</div>
<div id="overlay-black"><h2 id="gallery">gallery</h2></div>
<div id="overlay-gold"><h2 id="about">about</h2></div>
</body>
</html>
我希望动画之间的过渡是平滑/无缝的。目前,动画之间的过渡需要三个阶段。
答案 0 :(得分:0)
我只想向您展示只使用CSS的方法,因此您可以摆脱该jQuery。
下面逐步解释。最后,我将发布整个CSS代码。
在进行任何操作之前,请先将两种背景的50%不透明色替换为完全不透明的等效色。
对于#overlay-black
:使用#7f7f7f
代替rgba(0,0,0,0.5)
。
对于#overlay-gold
:使用#f5eb7f
代替rgba(235,215,0,0.5)
。
它将在过渡时避免某些不必要的方面。
在@media之外,将left: 0
的{{1}}删除。
为此,请在@media内删除#overlay-black
。
left: 50vw
和width: 50%
就足够了。
在@media内,为right: 0
和transition: 0.36s
添加#overlay-black
(这是动画的速度时间,它可以是您想要的秒数或毫秒数的任何值)。>
现在,这就是窍门。在@media内,为两个对象添加悬停行为:
#overlay-gold
最后,由于金色元素位于黑色之后,因此它位于屏幕前面,因此您需要为#overlay-black:hover, #overlay-gold:hover {
width: 55%;
}
添加效果以将其悬停在#overlay-gold
上以减小其宽度。可以使用#overlay-black
选择器,因为它们是同级,并且金色元素紧随黑色之后。将此添加到@media:
+
完成!这是完整的CSS代码:
#overlay-black:hover + #overlay-gold {
width: 45%;
}
答案 1 :(得分:0)
在CSS中向div添加过渡并更改宽度或高度:
div{ transition: all .5s }
然后使用jquery更改宽度或高度,或添加其他大小的类。