gpt4 book ai didi

jquery - 我如何摆脱这个 'jumpy' jQuery 行为?

转载 作者:行者123 更新时间:2023-11-28 18:58:46 25 4
gpt4 key购买 nike

在您按住按钮并按下按钮后,您移动按钮并再次向上移动。我试图让它向上动画并保持向上,直到你离开它,然后平滑向下动画。我确实需要它才能在 Safari、Firefox 和 IE 中工作。

提前感谢您的帮助、时间和考虑。

这是代码的工作示例。

    <html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script>
<script type="text/javascript"><!--
$(document).ready(function() {
var navDuration = 500;
var navJumpHeight = "90px";

$('#tabs li').hover(function() {
$(this).animate({ height : "-="+navJumpHeight }, navDuration);
}, function() {
$(this).animate({ height : "150px" }, navDuration);
});
});
// --></script>

<style type="text/css"><!--
/* CSS Reset */
html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input,hr{margin:0;padding:0;line-height:1em;}
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th{font-size:1em;font-weight:normal;font-style:normal;line-height:1em;}
ul,ol{list-style:none;}
fieldset,img,hr{border:none;}
q:before,q:after{content:'';}
abbr,acronym{border:0;}
caption,th{text-align:left;}
table{border-collapse:collapse;border-spacing:0;}
td {vertical-align:top;}
html{font-size:100.01%;}
body{font-size:1em;}
a img{border: none;}

body{ font-family:Arial; font-size:10px; font-weight:500; background:#ffffff no-repeat center top; }
div.headerblock{ position:absolute; display:table-cell; text-align:center; left:0px; top:0px; width:100%; height:150px; }
div.header{ position:relative; width:900px; height:170px; margin-left:auto; margin-right:auto; }
div.logo { position:relative; display:table-cell; vertical-align:top; text-align:left; left:0px; top:0px; width:349px; height:170px; float:left; }


#headerblock #header #tabs { height: 150px; overflow: hidden; padding: 0 10px; left:40; list-style: none; position: relative; filter:alpha(opacity=85); opacity:0.85; }
#headerblock #header #tabs li, #headerblock #header #tabs li a { width: 100px; position: relative; float: left; }
#headerblock #header #tabs li { top: 0 px; margin: 0; background: none; padding: 0; display: block; vertical-align: bottom;}
#headerblock #header #tabs li a { display: block; color: #ffffff; font-size: 1.7em; text-decoration: none; text-transform: uppercase; height: 150px; line-height: 1.1em}
#headerblock #header #tabs #tab_about a { background-color: #ff0000; }
#headerblock #header #tabs #tab_services a{ background-color: #ffa500; }
#headerblock #header #tabs #tab_contact a { background-color: #ffff00; }
#headerblock #header #tabs #tab_learning a{ background-color: #00ff00; }
#headerblock #header #tabs #tab_clients a { background-color: #0000ff; }
--></style>
</head>
<body>
<div class="headerblock" id="headerblock">
<div class="header" id="header">
<div class="logo">
&nbsp;
</div>
<ul id="tabs">
<li id="tab_about"><a href="#">&nbsp;<br>Tab 1</a></li>
<li id="tab_services"><a href="#">&nbsp;<br>Tab 2</a></li>
<li id="tab_contact"><a href="#">&nbsp;<br>Tab 3</a></li>
<li id="tab_learning"><a href="#">&nbsp;<br>Tab 4</a></li>
<li id="tab_clients"><a href="#">&nbsp;<br>Tab 5</a></li>
</ul>
</div >
</div>
</body>
</html>

最佳答案

li 中添加一个 overflow: hidden 因为 jQuery 也在动画期间这样做:http://jsfiddle.net/UJSZq/ .

#headerblock #header #tabs li { overflow: hidden }

关于jquery - 我如何摆脱这个 'jumpy' jQuery 行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6827276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com