Answers for "css animation zoom in and out text"

CSS
0

css animation zoom in-out infinite

.examplediv {
  height: 500px;
  width: 500px;
  animation: zoom-in-zoom-out 5s ease-in infinite;
}

@keyframes zoom-in-zoom-out {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.5, 1.5);
}
100% {
transform: scale(1, 1);
}
}
Posted by: Guest on July-31-2021
-1

html zoom text on hover

<style>
#test-text:hover {
font-size: 40px;
}


</style>

<body>
<p id=test-text>TEST</p>
</body>
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language