您的位置:首页 > Web前端 > > 正文

css3动画按钮加光晕效果(CSS3 制作的悬停缩放特效)

更多 时间:2022-01-14 02:15:17 类别:Web前端 浏览量:2335

css3动画按钮加光晕效果

CSS3 制作的悬停缩放特效实现效果:

css3动画按钮加光晕效果(CSS3 制作的悬停缩放特效)

实现代码:

html

  • <link href='https://fonts.googleapis.com/css?family=Roboto:100,400,300,500,700' rel='stylesheet' type='text/css'>
    
    <li align="center" class="fond">
    <li style="width:1000px;">
    
    <li class="style_prevu_kit" style="background-color:#cb2025;"></li>
    <li class="style_prevu_kit" style="background-color:#f8b334;"></li>
    <li class="style_prevu_kit" style="background-color:#97bf0d;"></li>
    <li class="style_prevu_kit" style="background-color:#00a096;"></li>
    <li class="style_prevu_kit" style="background-color:#93a6a8;"></li>
    
    
    <li style=" padding:5px; color:#b5e6e3; font-weight:300; font-size:30px; font-family:'Roboto';padding-top:20px;">jb <font style="font-weight:400;">51</font></li>
            <a href="http://www.wifeo.com/code" style="text-decoration:none;" target="_blank"><li style="  color:#b5e6e3; font-weight:300; font-size:20px; font-family:'Roboto';">开心学习网</li></a>
      
    </li>
    </li>
    
  • 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 悬停缩放的资料请关注开心学习网其它相关文章!

    标签:CSS3 悬停 缩放
    您可能感兴趣