CTRL+C pour copier, CTRL+V pour coller
1
Popcorn.plugin( "christmas" , {
2
start: function( event, options ){
3
this.media.style['box-shadow'] = '0px 0px 60px red';
5
end: function( event, options ) {
6
this.media.style['box-shadow'] = '';
9
var p = Popcorn( "#video" ).play().christmas({start: 0,end: 5});
Popcorn.plugin( "christmas" , {
start: function( event, options ){
this.media.style['box-shadow'] = '0px 0px 60px red';
},
end: function( event, options ) {
this.media.style['box-shadow'] = '';
},
});
var p = Popcorn( "#video" ).play().christmas({start: 0,end: 5});