CSS3 制作的悬停缩放特效

作者:互联网

2026-04-05

HTML教程

实现效果:

实现代码:

html

jb 51
本站

css3

.fond{position:absolute;padding-top:85px;top:0;left:0; right:0;bottom:0; background-color:#00506b;}.style_prevu_kit{    display:inline-block;    border:0;    width:196px;    height:210px;    position: relative;    -webkit-transition: all 200ms ease-in;    -webkit-transform: scale(1);     -ms-transition: all 200ms ease-in;    -ms-transform: scale(1);     -moz-transition: all 200ms ease-in;    -moz-transform: scale(1);    transition: all 200ms ease-in;    transform: scale(1);   }.style_prevu_kit:hover{    box-shadow: 0px 0px 150px #000000;    z-index: 2;    -webkit-transition: all 200ms ease-in;    -webkit-transform: scale(1.5);    -ms-transition: all 200ms ease-in;    -ms-transform: scale(1.5);       -moz-transition: all 200ms ease-in;    -moz-transform: scale(1.5);    transition: all 200ms ease-in;    transform: scale(1.5);}

以上就是CSS3 制作的悬停缩放特效的详细内容,更多关于CSS3 悬停缩放的资料请关注本站其它相关文章!