Jump to content
  • 0

Не успевает обработаться скрипт


user
 Share

Question

Есть галерея нодов на Друпале.По клику на элементе открывается модальное окно через colorbox-node на страницу со слайдером картинок flexslider.Проблема в том,что слайдер срабатывает через раз только после загрузки картинок.Я уже ставил load() где только можно.

Edited by user
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

В модальное окно грузится такой блок.

<div id="flexslider" class="flexslider flexslider-center-mobile flexslider-simple" data-plugin-options="{"animation":"slide", "animationLoop":true,"maxVisibleItems":1}"><ul class="slides"><li><img typeof="foaf:Image" src="picture-1.jpg" width="1280" height="1453" alt=""></li><li><img typeof="foaf:Image" src="picture-2.jpg" width="512" height="796" alt=""></li></ul></div>
После этого я вызываю повторную инициализацию.
<script type="text/javascript">jQuery('#flexslider').load(function(){jQuery('#flexslider').flexslider();});</script>
Проблема в том,что она не всегда срабатывает,видимо,из-за больших картинок.
Я ее ставил и после этого блока,и в скрипте colorbox,и проверял вместо #flexslider другие блоки,все равно.

 

Link to comment
Share on other sites

  • 0

//Функция-флаг загрузки картинки

function isImageLoaded(img) {

if (!img.complete)

return false;

if (typeof img.naturalWidth !== "undefined" && img.naturalWidth === 0)

return false;

return true;

}

//Проверка наличия всех картинок.

function CheckImg()

{

var imgNotLoaded = false;

$('#details img').each(function(n, img) {

if (!isImageLoaded(img))

{

imgNotLoaded = true;

return 0;

}

});

if (imgNotLoaded)

setTimeout(CheckImg, 250);

else

картинки_загружены_делаем_полезные_действия()

}

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