金山词霸或百度词典,点击音标即时发声,如何实现?文件存于文件夹内,点击时如何播放?也用flash吗?谢
展开全部
只播放声音可以用js,但复杂的播放器只能用flash做。jquery和extjs都可以方便实现播放声音。
下面是网上找的例子:
html
<p><a href="#" class="click">Click here for sound effect</a></p> <p><a href="#" class="hover">Hover here for sound effect</a></p>
js:
$(function(){
$('a.click').click(function(){
$('embed').remove();
$('body').append('<embed src="click.wav" autostart="true" hidden="true" loop="false">'); });
$('a.hover').mouseover(function()
{
$('embed').remove();
$('body').append('<embed src="hover.wav" autostart="true" hidden="true" loop="false">');
});
});
下面是网上找的例子:
html
<p><a href="#" class="click">Click here for sound effect</a></p> <p><a href="#" class="hover">Hover here for sound effect</a></p>
js:
$(function(){
$('a.click').click(function(){
$('embed').remove();
$('body').append('<embed src="click.wav" autostart="true" hidden="true" loop="false">'); });
$('a.hover').mouseover(function()
{
$('embed').remove();
$('body').append('<embed src="hover.wav" autostart="true" hidden="true" loop="false">');
});
});
来自:求助得到的回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询