All Questions
3 questions
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 ...
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-...
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,...