Message from JavaScript discussions
January 2019
— Animation or tricks to change color when you hoover with mouse carousel
Regarding Carousel I really need to create a carousel showing the last post of the blog (which is in wp)
— Well, to make animation you need some animation prototype which means you need graphics designer, you know it, right?
— Since you are on wp take advantage of the plugins
— Usually as an animator you take existing animations over the net and play with numbers
— Or you need to use plugins' existing animation effects
— But if you want to create animations yourself, you need to learn design, too.
— Ok thank you... 😊
— Just write js function to show the latest post - this is what i thought first off
— If smth is still not that obvious share with ideas, maybe smbd helps )
— Ok understand... regardin wp - posts should I make some query (using mysql and ajax) on the database?
— el.addEventListener("mouseover", () => {
// do stuff
});
el.addEventListener("mouseleave", () => {
// do stuff
});