清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
$(document).ready(function(){
$('.portfolio li').click(function() {
var new_feature = $(this);
if (!new_feature.hasClass('feature')){
$('li.feature').removeClass('feature');
setTimeout(function(){
new_feature.addClass('feature');
}, 500);
}
});
});