Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > it.comp.lang.javascript > #8038

script java

Path csiph.com!aioe.org!.POSTED!not-for-mail
From Joe rock <joerock@se.ce>
Newsgroups it.comp.lang.javascript
Subject script java
Date Wed, 1 Jun 2016 04:44:15 +0200
Organization Aioe.org NNTP Server
Lines 58
Message-ID <nili5r$kta$1@gioia.aioe.org> (permalink)
NNTP-Posting-Host QLjoBmolW+BjhiqLEnbnQg.user.gioia.aioe.org
Mime-Version 1.0
Content-Type text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding 7bit
X-Complaints-To abuse@aioe.org
User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0
X-Mozilla-News-Host news://nntp.aioe.org:119
X-Notice Filtered by postfilter v. 0.8.2
Xref csiph.com it.comp.lang.javascript:8038

Show key headers only | View raw


Cosa fa questo script ?


-----------------

<script>
<!--
// Mouseover/ Click sound effect- by JavaScript Kit (www.javascriptkit.com)
// Visit JavaScript Kit at http://www.javascriptkit.com/ for full source 
code

//** Usage: Instantiate script by calling: var 
uniquevar=createsoundbite("soundfile1", "fallbackfile2", 
"fallebacksound3", etc)
//** Call: uniquevar.playclip() to play sound

var html5_audiotypes={ //define list of audio file extensions and their 
associated audio types. Add to it if your specified audio file isn't on 
this list:
	"mp3": "audio/mpeg",
	"mp4": "audio/mp4",
	"ogg": "audio/ogg",
	"wav": "audio/wav"
}

function createsoundbite(sound){
	var html5audio=document.createElement('audio')
	if (html5audio.canPlayType){ //check support for HTML5 audio
		for (var i=0; i<arguments.length; i++){
			var sourceel=document.createElement('source')
			sourceel.setAttribute('src', arguments[i])
			if (arguments[i].match(/\.(\w+)$/i))
				sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
			html5audio.appendChild(sourceel)
		}
		html5audio.load()
		html5audio.playclip=function(){
			html5audio.pause()
			html5audio.currentTime=0
			html5audio.play()
			html5audio.stop()
			
		}
		return html5audio
	}
	else{
		return {playclip:function(){throw new Error("Your browser doesn't 
support HTML5 audio unfortunately")}}
	}
}

//Initialize two sound clips with 1 fallback file each:


var clicksound=createsoundbite("italian.mp3")
-->
</script>

Back to it.comp.lang.javascript | Previous | NextNext in thread | Find similar


Thread

script java Joe rock <joerock@se.ce> - 2016-06-01 04:44 +0200
  Re: script java "ciccio" <21669invalid@mynewsgate.net> - 2016-06-01 08:56 +0000
    Re: script java Joe rock <joerock@se.ce> - 2016-06-02 02:25 +0200
      Re: script java "ciccio" <21669invalid@mynewsgate.net> - 2016-06-03 09:57 +0000

csiph-web