//sample solution to script.js
$(document).ready(function(){
//your code here
$('.items').mouseover(function(){
$(this).children('a').show();
$(this).children('a').animate({
width: 100
}, 2500, function() {
// Animation complete.
});
});
$('.items').mouseout(function(){
$(this).children('a').hide();
});
});
No comments:
Post a Comment