Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. function player(){
  2. if(tourplayer == null){
  3. tourplayer = document.getElementById('krpanoSWFObject');
  4. }
  5. return tourplayer; }
  6.  
  7. var _objIDs = ['spotvideo2869','spotvideo2870','spotvideo2871','spotvideo2872','spotvideo2873','spotvideo2874','spotvideo2875','spotvideo2876','spotvideo2877','spotvideo2878'];
  8.  
  9. $.each(_objIDs,function(index,value){
  10. player().call('hotspot['+value+'].play()');
  11. player().call('hotspot['+value+'].stop()');
  12. });
  13.  
  14. $.each(_videoSounds,function(index,value){
  15. $('#container').prepend(
  16. '<audio preload="auto" controls style="display: none" id="'+index+'_sound"><source src="indexdata/sounds/'+value+'" type="audio/mpeg"></audio>'
  17. );
  18. document.getElementById(index+'_sound').muted = false;
  19. });
  20.  
  21. function playVideoSound(videoID) {
  22. $.each(_videoSounds,function(index,value){
  23. $('#'+index+'_sound').trigger('pause');
  24. });
  25. $('#'+videoID+'_sound').trigger('play'); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement