By looking at the source code of the jquery-appear plugin, it is possible to pass the argument one, to fire the event one time only (one: true), or every time it appears (one: false)
$('#myDiv').appear(function() {
$("#aDiv").addClass("active");
}, {
one: false
});