我正在开发一个播客网站 (http://bit.ly/HuLCn1)。在右侧的联系表格上方,我想添加一个 HTML5 音频播放器——最好是在http://www.speakker.com上找到的那个可以向上滑动的播放器。有没有人有这个播放器的经验?无论我做什么,我都无法复制在开发者主页上找到的播放器,即使有说明。想知道我在这里是否遗漏了什么?
此外,如果有人知道任何其他不错的 HTML5 音频播放器,我愿意接受建议。
提前致谢!
我正在开发一个播客网站 (http://bit.ly/HuLCn1)。在右侧的联系表格上方,我想添加一个 HTML5 音频播放器——最好是在http://www.speakker.com上找到的那个可以向上滑动的播放器。有没有人有这个播放器的经验?无论我做什么,我都无法复制在开发者主页上找到的播放器,即使有说明。想知道我在这里是否遗漏了什么?
此外,如果有人知道任何其他不错的 HTML5 音频播放器,我愿意接受建议。
提前致谢!
First, you have three javascript errors and you're loading two copies of the main jQuery 1.4.2 library. Use Firebug with Firefox, or in Chrome or Safari or IE8, use the developer tools to see what's loading on your site and see the JS errors.
Second, you need to correctly enqueue scripts in Wordpress so you don't duplicate scripts (either core scripts for your theme and scripts that plugins will load via wp_head
) and load scripts according to their dependancies. Wordpress also includes many jQuery libraries, so you don't have to also include them in your theme. See http://codex.wordpress.org/Function_Reference/wp_enqueue_script
Third, you're using Thesis. Try switching to twentyeleven with the same plugin and see if you have the same JS errors and if the audio player works. That means a conflict JS in Thesis and possibly a doc type error, too, if Thesis doesn't use a html5 doc type.