Posts by Vinícius Mussato • 14 points
3 posts
-
0
votes1
answer87
viewsA: Progress bar Angular 2
I think this one might help. http://crisbeto.github.io/angular-svg-round-progressbar/ https://github.com/crisbeto/angular-svg-round-progressbar…
-
0
votes1
answer93
viewsA: Check if user is logging in from within the company
You can create a list of trusted ips and any ip outside of these only accesses parts of the system. Something like this should be controlled in the back end right after the login request. And then…
-
-2
votes2
answers684
viewsA: Start animation when DIV is visible
Try putting your code inside a block like this: $( window ).on( "load", function() { //Seu código }); Source: https://learn.jquery.com/using-jquery-core/document-ready/…