# zzAudioPlayer **Repository Path**: mirrors_ashqal/zzAudioPlayer ## Basic Information - **Project Name**: zzAudioPlayer - **Description**: a muti platform simple audio player to play wav/mp3 using html5(tested on chrome/safari/firefox/android/ios) and embed mediaplayer(just for ie). - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README zzAudioPlayer ============= a muti platform simple audio player to play wav/mp3 using html5(tested on chrome/safari/firefox/android/ios) and embed mediaplayer(just for ie). # HOW TO USE IT? * head import jquery-1.8.2.min.js * head import jquery.timers.min.js * head import audioplayer.js * set the div attributes class = "whateveryoulike" and data-audio = "audiosource.wav".like this, ``` html
``` * add code on document.ready() function.like this, ``` javascript $(document).ready(function(){ var config = {id:"zzAuidoPlayArea",playingCSS:"playing",defaultText:"PLAY"}; $(".audioplayer").each(function(){ $(this).zzAudioPlay(config); }); }); ``` * enjoy it! # SCREENSHOT    # NOTICE this code based on http://blog.csdn.net/fdipzone/article/details/8170337