· click( handler(eventObject) )
· .css()
Categories: CSS | Manipulation > Style Properties
Contents:
o .css( propertyName )
o .css( propertyName, value )
o .css( propertyName, function(index, value) )
- .css( map )
· For showind url :
Your browser does not support iframes.
· Html5 audio tag J not work with many browsers J
http://www.w3schools.com/html5/html5_audio.asp
· Flash Player jquery plugin
http://jquery.lukelutman.com/plugins/
Going by example is good .
$(document).ready(function(){
$('a[@href$="mp3"]').flash( // this was difficult to understand J
{ src: 'singlemp3player.swf', height: 20, width: 100 },
{ version: 7 },
function(htmlOptions) {
$this = $(this);
htmlOptions.flashvars.file = $this.attr('href');
$this.before($.fn.flash.transform(htmlOptions));
}
);
});
Before:
After:
sound.mp3
http://jquery.lukelutman.com/plugins/flash/example-mp3.html
No comments:
Post a Comment