简体   繁体   中英

How can I do a zoom effect to a button?

I want to know If it is possible to do a zoom-transition to get Inside a Button, where are more Buttons to find? Like there are some Main theme buttons and I want to get to the sub themes with other Buttons. And the Main theme buttons are dissolving after a Zoom Transition. I need this Effect Inside one of My webpages.

Is this possible with js and/or CSS/html?

You can try using transform

Eg.

.button:hover {
transform: scale(1.5);
}

https://www.w3schools.com/howto/howto_css_zoom_hover.asp

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM