laraestimate
laraestimate copied to clipboard
Double horizontal-slide-in view at every request
Thank you for this project, please keep the good work.
There is a visual issue with the loading of the page.
The sliding effect (from the side) of the main frame is executed 2 times with a short interval when I open a link or reload the page.
I am not really good at PHP or Laravel but in Firefox I see that it seems that the effect or the view is reloaded when app.js charge the logo. Not sure if it's the source.
It's pretty fast but still visible.
Maybe that this one is due to a bug with Firefox ESR and animations or keyframes. I tried on Chrome and it didn't repeat.
For Firefox I changed the keyframes a little, and it's fixed, but I don't know why :
@Keyframes slideInLeft {
0% {
transform: translate3d(-120%,0,0);
visibility: hidden;
}
100% {
transform: translateZ(0);
visibility: visible;
}
No I was wrong, it's still happening in Firefox ESR, the slideInLeft animation of the main animated div repeat 2 or sometimes 3times. I added delay-500ms in the class for each "div .animated" as a dirty fix for now.