原文地址:http://justcoding.iteye.com/blog/545978

Wordpress audio player with jQuery

How to use Wordpress audio player (standalone version) with jQuery and jQuery SWFObject (progressive enhancement).

<!-- SECTION "Wordpress audio player with jQuery" [1-272] -->

Example 1: basic

View demo

HTML

  1. <a class="audio" href="audio/reason.mp3">
  2. Audio: An Electronic Reason
  3. </a>

Javascript

<!-- SECTION "Example 1: basic" [273-705] -->

  1. $('.audio').each(function(){
  2. audio_file = $(this).attr('href');
  3. $(this).flash(
  4. {
  5. swf: 'flash/audioplayer.swf',
  6. flashvars:
  7. {
  8. soundFile: audio_file
  9. }
  10. }
  11. );
  12. });

Example 2: several synchronized players

View demo

Javascript

<!-- SECTION "Example 2: several synchronized players" [706-1488] -->

  1. // close other audio players
  2. // called by audio player when click on play button
  3. function ap_stopAll(player_id)
  4. {
  5. $('.audio').each(function(){
  6. if($(this).attr('href') != player_id)
  7. {
  8. $(this).find('object')[0].SetVariable("closePlayer", 1);
  9. }
  10. else
  11. {
  12. $(this).find('object')[0].SetVariable("closePlayer", 0);
  13. }
  14. });
  15. }
  16. $(document).ready(function() {
  17. $('.audio').each(function(){
  18. audio_file = $(this).attr('href');
  19. $(this).flash(
  20. {
  21. swf: 'flash/audioplayer.swf',
  22. flashvars:
  23. {
  24. playerID: "'" + audio_file + "'",
  25. soundFile: audio_file
  26. }
  27. }
  28. );
  29. });
  30. });

Notes

How it works:

  • players are given an id upon initialization
  • when click on play button, player calls ap_stopAll() with its id as parameter
  • ap_stopAll(): stops all players but the one with this id
  • the id here is the audio file path, but anything else is possible.

<!-- SECTION "Notes" [1489-1786] -->

Example 3: real world

View demo

HTML

  1. <p>
  2. <a class="audio" href="audio/reason.mp3" id="reason">
  3. Audio: An Electronic Reason
  4. </a>
  5. </p>
  6. <p>
  7. <a class="audio" href="audio/sunday.mp3" id="sunday">
  8. Audio: By Sunday Afternoon
  9. </a>
  10. </p>

Javascript

  1. // close other audio players
  2. // called by audio player when click on play button
  3. function ap_stopAll(player_id)
  4. {
  5. $('.audio_flash').each(function(){
  6. if($(this).attr('id') != player_id)
  7. {
  8. $(this).find('object')[0].SetVariable("closePlayer", 1);
  9. }
  10. else
  11. {
  12. $(this).find('object')[0].SetVariable("closePlayer", 0);
  13. }
  14. });
  15. }
  16. $(document).ready(function() {
  17. $('.audio').each(function() {
  18. audio_file = $(this).attr('href');
  19. audio_title = $(this).text();
  20. audio_id = $(this).attr('id');
  21. div = $('<div class="audio_flash" id="' + audio_id + '"></div>');
  22. $(this).after(div);
  23. $(this).after(audio_title);
  24. $(this).remove();
  25. div.flash(
  26. {
  27. swf: 'flash/audioplayer.swf',
  28. flashvars:
  29. {
  30. soundFile: audio_file,
  31. playerID: "'" + audio_id + "'",
  32. quality: 'high',
  33. lefticon: '0xFFFFFF',
  34. righticon: '0xFFFFFF',
  35. leftbg: '0x357CCE',
  36. rightbg: '0x32BD63',
  37. rightbghover: '0x2C9D54',
  38. wmode: 'transparent'
  39. },
  40. height: 50
  41. }
  42. );
  43. });
  44. });

<!-- SECTION "Example 3: real world" [1787-3238] -->

Notes

  • meaningful HTML: visitors without Javascript get a download link, otherwise it's replaced by plain text and the player

  • the appearance can be customized with many options (bottom of the page).
  • the default white space before and after the player is reduced by the “height” Flash parameter.
  • use of a custom id (set on the HTML link)

<!-- SECTION "Notes" [3239-3682] -->

Download

<!-- SECTION "Download" [3683-] -->

 

Wordpress 音频播放器 Wordpress audio player with jQuery audioplayer.swf的更多相关文章

  1. 【jquery】一款不错的音频播放器——Amazing Audio Player

    前段时间分享了一款视频播放器,点击这里.今天介绍一款不错的音频播放器——Amazing Audio Player. 介绍: Amazing Audio Player 是一个使用很方便的 Windows ...

  2. 基于canvas和Web Audio的音频播放器

    wavesurfer.js是一款基于HTML5 canvas和Web Audio的音频播放器插件.通过wavesurfer.js你能够使用它来制作各种HTML5音频播放器,它能够在各种支持 Web A ...

  3. 最简单的基于FFMPEG+SDL的音频播放器 ver2 (采用SDL2.0)

    ===================================================== 最简单的基于FFmpeg的音频播放器系列文章列表: <最简单的基于FFMPEG+SDL ...

  4. 最简单的基于FFMPEG+SDL的音频播放器 ver2 (採用SDL2.0)

    ===================================================== 最简单的基于FFmpeg的音频播放器系列文章列表: <最简单的基于FFMPEG+SDL ...

  5. HTML5 音频播放器-Javascript代码(短小精悍)

    直接上干货咯! //HTML5 音频播放器 lzpong 2015/01/19 var wavPlayer = function () { if(window.parent.wavPlayer) re ...

  6. IOS开发之简单音频播放器

    今天第一次接触IOS开发的UI部分,之前学OC的时候一直在模拟的使用Target-Action回调模式,今天算是真正的用了一次.为了熟悉一下基本控件的使用方法,和UI部分的回调,下面开发了一个特别简易 ...

  7. 与众不同 windows phone (14) - Media(媒体)之音频播放器, 视频播放器, 与 Windows Phone 的音乐和视频中心集成

    原文:与众不同 windows phone (14) - Media(媒体)之音频播放器, 视频播放器, 与 Windows Phone 的音乐和视频中心集成 [索引页][源码下载] 与众不同 win ...

  8. Unity3D音频播放器 动态装载组件

    大多数在线Unity有关如何只教程Unity在播放音乐.之后如何通过拖动它们无法继续添加音频文件 但有时在游戏中的对象要玩几个声音.这时候我们就需要使用代码控制,拖动推教程AudioClip颂值的方法 ...

  9. OCiOS开发:音频播放器 AVAudioPlayer

    简单介绍 AVAudioPlayer音频播放器可以提供简单的音频播放功能.其头文件包括在AVFoudation.framework中. AVAudioPlayer未提供可视化界面,须要通过其提供的播放 ...

随机推荐

  1. 关于Redis的一些常识

    http://blog.csdn.net/mengxianhua/article/details/8961713 关于Redis的一些常识 2013-05-22 18:00 13315人阅读 评论(0 ...

  2. 经典递归算法研究:hanoi塔的理解与实现

    关于hanoi塔的原理以及概念,请Google,访问不了去百度. 主要设计到C中程序设计中递归的实现: 主代码实现如下: void hanoi(int src, int dest, int tmp, ...

  3. Merge k Sorted Lists 解答

    Question Merge k sorted linked lists and return it as one sorted list. Analyze and describe its comp ...

  4. Windows多线程同步系列之四-----信号量

    信号量说实话自己没怎么使用过.书上大概这样说,信号量设置一个资源访问计数.当该计数值大于0的时候,该信号量对象 为有信号状态,当该计数值等于0的时候,该信号量对象为无信号状态. 我们来查几个主要的AP ...

  5. ZOJ 1136 Multiple (BFS)

    Multiple Time Limit: 10 Seconds      Memory Limit: 32768 KB a program that, given a natural number N ...

  6. qsort的几种用法

    #include<stdio.h> #include<stdlib.h> int cmp(const void *a,const void *b){ return *(int ...

  7. iOS开发-CGAffineTransformMakeRotation改变了中心解决的方法

    坑爹的.  为了这个问题折腾了2个小时. 恼.. 今天在写一个时钟demo的时候, 时针的旋转用到了CGAffineTransformMakeRotation, 按理说. 图像的旋转是以图像本身的中心 ...

  8. wso2esb源码编译总结

    最近花了两周的空闲时间帮朋友把wso2esb的4.0.3.4.6.0.4.7.0三个版本从源码编译出来了.以下是大概的一些体会. wso2esb是基于carbon的.carbon是个基于eclipse ...

  9. mysql跟踪提交的SQL语句

    http://www.cnblogs.com/wuyifu/p/3328024.html

  10. android第一天错误

    1.自己写的activity并在AndroidManifest.xml中注册 在模拟机上运行时出现 No Launcher activity found! The launch will only s ...