com.jwebmp.plugins.angularzoomanimation.zoomIn.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-angular-ui-zoom Show documentation
Show all versions of jwebmp-angular-ui-zoom Show documentation
The JWebSwing implementation for Angular UI Zoom
JW_APP_NAME.directive('zoomIn', zoomIn);
function zoomIn($timeout, $rootScope) {
return {
restrict: 'A',
link: function ($scope, elem) {
var delay = 1000;
if ($rootScope.$pageFinishedLoading) {
delay = 100;
}
$timeout(function () {
elem.removeClass('full-invisible');
elem.addClass('animated zoomIn');
}, delay);
}
};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy