Jump to content
  • 0

Слайдшоу со звуковыми эфектами


ckopnio
 Share

Question

Здравтсвуйте.

Подскажите сладшоу со звуковыми эфектами. Но чтобы изображение выводилось не в фоне. Так как в GalleryView(или подскажите как в этой галереи добавить звуковые эфекты).

Спасибо.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Здравтсвуйте.

Подскажите сладшоу со звуковыми эфектами. Но чтобы изображение выводилось не в фоне. Так как в GalleryView(или подскажите как в этой галереи добавить звуковые эфекты).

Спасибо.

Копать в сторону флеша. Поддержка тега audio еще не до конца реализована в браузерах

Link to comment
Share on other sites

  • 0

Вопшем я не силён в Jquery, но мне кое-что получилось прикрутить к GalleryView

<audio id="beep-prod" controls="controls" preload="auto">
<source src="audio/listing_prod.mp3" controls></source>
<source src="audio/listing_prod.ogg" controls></source>
Ваш браузер не поддерживает замечательный элемент <audio>.
</audio>
<script>
var beepProd = jQuery("#beep-prod")[0];
var pold = 0;
function fp(){

var po = jQuery('#pointer').css('left');
if (po!=pold){
//alert(po);
beepProd.play();
}
pold = po;
myTimer = setTimeout('fp()',4000);
}

var fold = 0;
function ffp(){

var fo = parseInt(jQuery('.filmstrip').css('left'));
if (fo!=fold){
//alert(fo);
beepProd.play();
}
fold = fo;
if(fo!=0){
myTimer = setTimeout('ffp()',4000);
}
else {
myTimer = setTimeout('fp()',4000);
}
}

jQuery(function () {

jQuery(".filmstrip").change(ffp).change();


});

</script>

Звуки издаются, эфект достигнут.

Буду благодарен за критику

Вот только ещё нужно реализовать воспроизведение звука, если пользователь сам изменяет картинку....

Edited by ckopnio
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