#7755 closed bug (invalid)
animate with background-position and negative top position does not work
Reported by: | anonymous | Owned by: | anonymous |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | effects | Version: | 1.4.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If you try to animate a background-image by background-position and the initial-Y-position of the background is negative, then the animate-command will start at zero instead at the y position.
image.css({'background-position': '200px -200px'}); image.animate({'background-position': '0px 0px'}, 5000);
As you can see in this example the background will be first set to 200px -200px and then when the animation begins it jumps to 200px 0px and animates to 0px 0px.
Change History (10)
comment:1 Changed 12 years ago by
Owner: | set to anonymous |
---|---|
Status: | new → pending |
comment:2 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
comment:4 Changed 12 years ago by
Component: | unfiled → effects |
---|---|
Milestone: | 1.6 → 1.next |
Priority: | undecided → low |
comment:7 Changed 12 years ago by
If the main jQuery animate() function cannot support all standard cross-browser CSS properties, and we have to install hooks piecemeal to support those other properties, why have animate() be a part of core jQuery at all?
I move for jQuery animate() to support multiple value CSS properties by default or for animate() to be extracted from jQuery core.
You might want to checkout the jQuery-cssHooks plugin (bgpos.js) which uses the new cssHooks functionality to animate background-position correctly. The documentation of
css()
andanimate()
clearly state that at the moment only properties which areare supported.
If the plugin works out for you might also try to do this yourself using the animate() step callback. Please report back if this suggestion work out for you.