Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
3 answers
426 views

Resize background-image using jQuery Transit

I have DIV with CSS property: .box { background-image: url(images/img.jpg); } I have choosed this library for transition effects. And I want to use scale effect on some pages. Typical syntax to ...
Abaza's user avatar
  • 2,281
0 votes
1 answer
92 views

Need help making my HTML and CSS code for navigation effect more efficient

$(document).ready(function(){ $("#sticky-header").hide(); }); $(window).scroll(function(){ if( $(document).scrollTop() > 160 ) { $.fx.speeds._default = 300; $('#sticky-...
Bob's user avatar
  • 1
0 votes
1 answer
180 views

jquery animate callback not executing until final loop

I made a small test code using the jquery transit plugin for animations. The purpose of the script is to have a photo of a tower make a flip 90 degrees toward the user, switch to another tower image,...
tomc's user avatar
  • 427