jQuery animate() 出现问题

发布于 2024-12-04 03:28:59 字数 1011 浏览 0 评论 0原文

这是我的 html 文档。我正在尝试使用 jQuery animate() 将我的一个标题移动到另一个位置,但由于某种原因我无法让它启动。 fadeOutfadeIn 工作,所以我知道我的 JavaScript href 正在工作。此外,它与不声明文档类型无关。

 <html>
 <head>
 <title>We Hate Treyarch - Let your opinions mean something </title>
 <link rel="stylesheet" type="text/css" href="style.css" />
 <script type="text/javascript" src="jquery.js"></script>
 <script type="text/javascript">
 $(function(){
 $(window).load(function(){
 $("#underhead").animate
 ({top:600px;left:600px;},2000);
 $("#underhead").animate
 ({top:170px;left:165px;},5000);
 });
 });
 </script>
 </head>

<body>

<div id="tophead"></div>
<div id="sechead"> </div>

<div id="header">
 <h1 id="hye">We <span class="kame"><b>hate</b></span> treyarch</h1>
 </div>
 <div id="underhead">and so do you...</div>
 </body>
 </html>

Here is my html doc. I'm trying to work my one header to another position using jQuery animate() and for some reason I can't get it to fire. The fadeOut and fadeIn work so I know that my JavaScript href is working. Also, it doesn't have to do with not declaring the document type.

 <html>
 <head>
 <title>We Hate Treyarch - Let your opinions mean something </title>
 <link rel="stylesheet" type="text/css" href="style.css" />
 <script type="text/javascript" src="jquery.js"></script>
 <script type="text/javascript">
 $(function(){
 $(window).load(function(){
 $("#underhead").animate
 ({top:600px;left:600px;},2000);
 $("#underhead").animate
 ({top:170px;left:165px;},5000);
 });
 });
 </script>
 </head>

<body>

<div id="tophead"></div>
<div id="sechead"> </div>

<div id="header">
 <h1 id="hye">We <span class="kame"><b>hate</b></span> treyarch</h1>
 </div>
 <div id="underhead">and so do you...</div>
 </body>
 </html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十雾 2024-12-11 03:28:59

javascript 对象不是这样定义的:

{top:600px;left:600px;}

它是这样的:

{top:"600px", left:"600px"}

这必须是 javascript 语法,而不是 CSS 语法。

这应该已经在 javascript 错误控制台或您使用的任何 js 调试器的控制台窗口中为您进行了描述,因为它是 javascript 语法错误。

另外,没有理由同时使用两者:

$(function(){

在其内部:

$(window).load(function(){

使用其中之一。我建议只使用 jQuery 版本,除非您必须等待图像完成加载,在这种情况下仅使用 window.load 版本。

此代码有效:

 $(function(){
     $("#underhead").animate({top: "600px", left: "600px"}, 2000);
     $("#underhead").animate({top: "170px", left: "165px"}, 5000);
 });

您可以在此处查看它的实际效果: http://jsfiddle.net/jfriend00/V23rW/< /a>.

A javascript object is not defined like this:

{top:600px;left:600px;}

It's this:

{top:"600px", left:"600px"}

This must be javascript syntax, not CSS syntax.

This should have been described for you in the javascript error console or the console window in whatever js debugger you use as it's a javascript syntax error.

Also, there no reason to use both:

$(function(){

with this inside of it:

$(window).load(function(){

Use one or the other. I'd suggest just the jQuery version unless you have to wait for images to finish loading in which case only use the window.load version.

This code works:

 $(function(){
     $("#underhead").animate({top: "600px", left: "600px"}, 2000);
     $("#underhead").animate({top: "170px", left: "165px"}, 5000);
 });

and you can see it in action here: http://jsfiddle.net/jfriend00/V23rW/.

猫烠⑼条掵仅有一顆心 2024-12-11 03:28:59

这是正确的动画语法,你的是错误的。

$('#id').click(function() {
  $('.class').animate({
    opacity: 0.25,
  }, 5000, function() {
  });
});

Here's the correct animate syntax, yours is wrong.

$('#id').click(function() {
  $('.class').animate({
    opacity: 0.25,
  }, 5000, function() {
  });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文