Relative Content

Tag Archive for htmlcsscss-animationscss-transitions

Want to change animation speed of all child elements on hovering on the parent element

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Pulse</title> <style type=”text/css”> body { padding: 300px; background-color: rgb(15, 19, 24); } .m { display: flex; justify-content: center; align-items: center; transition: all 0.8s ease-in-out; } .m * { transition: all 0.8s ease-in-out; } .m *:hover { animation: /*animation of all children*/ 0.4s ease 1s […]