, , , . jQuery "", hiddenAway. , . , .
$(document).ready(function() {
$("#projs").click(function() {
if ($("#projList").hasClass('hideAway')) {
$("#projList").removeClass('hideAway').animate({
bottom: '25%'
});
} else {
$("#projList").animate({
bottom: '0'
})
setTimeout(function() {
$("#projList").addClass('hideAway');
}, 300)
}
});
});
** : **
Ehsan, , , . , , jQuery , . :
$(document).ready(function() {
$("#projs").click(function() {
if ($("#projList").hasClass('hideAway')) {
$("#projList").removeClass('hideAway').animate({
bottom: '25%'
});
} else {
$("#projList").animate(
{
bottom: '0'
},
function() {
$("#projList").addClass('hideAway');
}
);
}
});
});