basic animation

This commit is contained in:
2021-10-11 19:13:00 +01:00
parent fce90d289d
commit 49df3568e3
7 changed files with 230 additions and 21 deletions

8
javascript/anime.min.js vendored Normal file

File diff suppressed because one or more lines are too long

38
javascript/main.js Normal file
View File

@ -0,0 +1,38 @@
anime({
targets: '#human',
opacity: 1,
duration: 2000,
easing: 'easeInOutExpo'
});
anime({
targets: '#brain',
opacity: 1,
duration: 2000,
delay: 1000,
easing: 'easeInOutExpo'
});
anime({
targets: '#brain-projection',
opacity: 1,
duration: 2000,
delay: 1000,
easing: 'easeInOutExpo'
});
anime({
targets: '#Alcohol',
opacity: 1,
duration: 2000,
delay: 2000,
easing: 'easeInOutExpo'
});
anime({
targets: '#connection-rectangle',
opacity: 1,
duration: 1000,
delay: 3000,
easing: 'easeInOutExpo'
});