4 lines
243 B
JavaScript
4 lines
243 B
JavaScript
|
addLoadEvent( function() {
|
||
|
// pulse
|
||
|
jQuery('.fade').animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300).animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300);
|
||
|
});
|