Wordpress 音频播放器 Wordpress audio player with jQuery audioplayer.swf
原文地址: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
HTML
- <a class="audio" href="audio/reason.mp3">
- Audio: An Electronic Reason
- </a>
Javascript
<!-- SECTION "Example 1: basic" [273-705] -->
- $('.audio').each(function(){
- audio_file = $(this).attr('href');
- $(this).flash(
- {
- swf: 'flash/audioplayer.swf',
- flashvars:
- {
- soundFile: audio_file
- }
- }
- );
- });
Example 2: several synchronized players
Javascript
<!-- SECTION "Example 2: several synchronized players" [706-1488] -->
- // close other audio players
- // called by audio player when click on play button
- function ap_stopAll(player_id)
- {
- $('.audio').each(function(){
- if($(this).attr('href') != player_id)
- {
- $(this).find('object')[0].SetVariable("closePlayer", 1);
- }
- else
- {
- $(this).find('object')[0].SetVariable("closePlayer", 0);
- }
- });
- }
- $(document).ready(function() {
- $('.audio').each(function(){
- audio_file = $(this).attr('href');
- $(this).flash(
- {
- swf: 'flash/audioplayer.swf',
- flashvars:
- {
- playerID: "'" + audio_file + "'",
- soundFile: audio_file
- }
- }
- );
- });
- });
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
HTML
- <p>
- <a class="audio" href="audio/reason.mp3" id="reason">
- Audio: An Electronic Reason
- </a>
- </p>
- <p>
- <a class="audio" href="audio/sunday.mp3" id="sunday">
- Audio: By Sunday Afternoon
- </a>
- </p>
Javascript
- // close other audio players
- // called by audio player when click on play button
- function ap_stopAll(player_id)
- {
- $('.audio_flash').each(function(){
- if($(this).attr('id') != player_id)
- {
- $(this).find('object')[0].SetVariable("closePlayer", 1);
- }
- else
- {
- $(this).find('object')[0].SetVariable("closePlayer", 0);
- }
- });
- }
- $(document).ready(function() {
- $('.audio').each(function() {
- audio_file = $(this).attr('href');
- audio_title = $(this).text();
- audio_id = $(this).attr('id');
- div = $('<div class="audio_flash" id="' + audio_id + '"></div>');
- $(this).after(div);
- $(this).after(audio_title);
- $(this).remove();
- div.flash(
- {
- swf: 'flash/audioplayer.swf',
- flashvars:
- {
- soundFile: audio_file,
- playerID: "'" + audio_id + "'",
- quality: 'high',
- lefticon: '0xFFFFFF',
- righticon: '0xFFFFFF',
- leftbg: '0x357CCE',
- rightbg: '0x32BD63',
- rightbghover: '0x2C9D54',
- wmode: 'transparent'
- },
- height: 50
- }
- );
- });
- });
<!-- 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-] -->
- jquery_audio_player.zip (1.4 MB)
- 下载次数: 53
Wordpress 音频播放器 Wordpress audio player with jQuery audioplayer.swf的更多相关文章
- 【jquery】一款不错的音频播放器——Amazing Audio Player
前段时间分享了一款视频播放器,点击这里.今天介绍一款不错的音频播放器——Amazing Audio Player. 介绍: Amazing Audio Player 是一个使用很方便的 Windows ...
- 基于canvas和Web Audio的音频播放器
wavesurfer.js是一款基于HTML5 canvas和Web Audio的音频播放器插件.通过wavesurfer.js你能够使用它来制作各种HTML5音频播放器,它能够在各种支持 Web A ...
- 最简单的基于FFMPEG+SDL的音频播放器 ver2 (采用SDL2.0)
===================================================== 最简单的基于FFmpeg的音频播放器系列文章列表: <最简单的基于FFMPEG+SDL ...
- 最简单的基于FFMPEG+SDL的音频播放器 ver2 (採用SDL2.0)
===================================================== 最简单的基于FFmpeg的音频播放器系列文章列表: <最简单的基于FFMPEG+SDL ...
- HTML5 音频播放器-Javascript代码(短小精悍)
直接上干货咯! //HTML5 音频播放器 lzpong 2015/01/19 var wavPlayer = function () { if(window.parent.wavPlayer) re ...
- IOS开发之简单音频播放器
今天第一次接触IOS开发的UI部分,之前学OC的时候一直在模拟的使用Target-Action回调模式,今天算是真正的用了一次.为了熟悉一下基本控件的使用方法,和UI部分的回调,下面开发了一个特别简易 ...
- 与众不同 windows phone (14) - Media(媒体)之音频播放器, 视频播放器, 与 Windows Phone 的音乐和视频中心集成
原文:与众不同 windows phone (14) - Media(媒体)之音频播放器, 视频播放器, 与 Windows Phone 的音乐和视频中心集成 [索引页][源码下载] 与众不同 win ...
- Unity3D音频播放器 动态装载组件
大多数在线Unity有关如何只教程Unity在播放音乐.之后如何通过拖动它们无法继续添加音频文件 但有时在游戏中的对象要玩几个声音.这时候我们就需要使用代码控制,拖动推教程AudioClip颂值的方法 ...
- OCiOS开发:音频播放器 AVAudioPlayer
简单介绍 AVAudioPlayer音频播放器可以提供简单的音频播放功能.其头文件包括在AVFoudation.framework中. AVAudioPlayer未提供可视化界面,须要通过其提供的播放 ...
随机推荐
- QTabWidget and QTabBar.的文字的颜色设置,三种方法
see the code after subclassingTabWidget::TabWidget(QWidget *parent): QTabWidget(parent),mousePressFl ...
- WPF笔记(1.9 样式和控件模板)——Hello,WPF!
原文:WPF笔记(1.9 样式和控件模板)--Hello,WPF! 资源的另一个用途是样式设置: <Window > <Window.Resources> <St ...
- < IOS > IOS适配,简单的分析解决一下
版权:张英堂 欢迎转载,转载请注明出处. 做的项目很多,一到适配的时候头就大了,IOS6,7的适配,屏幕的适配,当然还有下一步要出4.7屏幕,也要做适配....悲剧的移动端的人员. 怎么做一个通用的适 ...
- Clone使用方法详解【转载】
博客引用地址:Clone使用方法详解 Clone使用方法详解 java“指针” Java语言的一个优点就是取消了指针的概念,但也导致了许多程序员在编程中常常忽略了对象与引用的区别,本文 ...
- PHP Database ODBC 之 ODBC
ODBC 是一种应用程序编程接口(Application Programming Interface,API),使我们有能力连接到某个数据源(比如一个 MS Access 数据库). 创建 ODBC ...
- 总结FormsAuthentication的使用
一.先看一下使用FormsAuthentication做登录认证的用法 用法一: FormsAuthentication.SetAuthCookie(username, isPersistent); ...
- Mac 删除Openfire
首先,确保你已经关掉了openfire 打开终端 (在应用程序-->实用工具-->) 输入以下命令 sudo rm -rf /Library/PreferencePanes/Openfir ...
- Keepalived+Lvs+Mysql主主复制
一简单介绍 Keepalived+lvs+mysql主主复制是比較经常使用的一种Mysql高可用方案,当中lvs 提供读负载均衡,Keepalived通过虚拟vip漂移实现故障自己主动转移,而Mysq ...
- Best Time to Buy and Sell Stock (java)
有一组数组代表股票的价格 一次买一次卖如何得到最大利润? public int maxProfit(int[] prices) { if(prices.length==0)return 0; int ...
- PDO扩展使用方法
pdo扩展为php访问数据库提供了一个轻量级的一致接口,pdo提供了一个数据访问抽象层,这意味着不管使用哪种数据库,都可以使用相同的函数来查询和获取数据. $dbms='mysql'; //数据库类型 ...
