Jump to content
  • 0

не срабатывает scrollLeft анимация в firefox


krokodily
 Share

Question

Не срабатывает анимация scrollLeft в Firefox. В Chrome и IE работает. Помогите разобраться. Не могу найти ошибку.

Рабочий примет тут

код:


$(document).ready(function(){
var destination = 0;
var iteration = 0;

$("div.nav2").css("display", "none");

function runIt() {
if (iteration < 46) {
$("body").animate({scrollLeft: '+='+destination}, 10, function(){setTimeout(runIt, 30);});
iteration += 1;
}
else {
iteration = 0;
}
}

$("a#play").click(function() {
destination = $("img.frame:first").width();
runIt();
$("div.nav1").css("display", "none");
setTimeout( function()
{
$("div.nav2").css("display", "block");
}, 400);
});

$("a#forward").click(function() {
$("body").animate({scrollLeft: 0}, 5000);
$("div.nav2").css("display", "none");
setTimeout( function()
{
$("div.nav1").css("display", "block");
}, 400);
});

$(window).scroll(function () {
$("div.nav-container").css("display", "none").fadeIn(400);
});
});

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Простите, вы серьезно, или вы меня тролите? Я плохо знаю javascript и jquery, это мой первый опыт. Пожалуйста, скажите, что вы имеете в виду.

То, что вы плохо знаете одно и второе и ежу понятно.

jQuery - кроссплатформенная библиотека. Это значит, что она должна работать на всех браузерах. Если что-то работает в двух браузерах, а в третьем не работает, то это не проблема вашего кода - это проблема библиотеки. Точить под вас специальную версию jQ никто тут не будет, поэтому единственное, что остается, так это писать разработчикам, чтобы они исправили баг или рассказали, почему это не баг и как решить этот баг/не баг.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy