Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- // source code on: https://javascriptkit.com
- var html5_audiotypes={
- "mp3": "audio/mpeg",
- }
- function createsoundbite(sound){
- var html5audio=document.createElement('audio')
- if (html5audio.canPlayType){
- 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()
- }
- return html5audio
- }
- else{
- return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}
- }
- }
- var clicksound=createsoundbite("https://dl.dropbox.com/s/801cvw3pp9iop3j/Cute%20Sound%20Effects%20No%20Copyright%20%28for%20your%20Audios%29%20instant%20download%20%281%29.mp3?dl=0")
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement