css实现三款鼠标悬浮按钮动画效果代码

代码语言:html

所属分类:悬停

代码描述:css实现三款鼠标悬浮按钮动画效果代码

代码标签: css 按钮 悬浮 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">


    <link href="https://fonts.googleapis.com/css?family=Montserrat:700" rel="stylesheet">
    <meta name="viewport" content="width=device-width, initial-scale=1">



    <style>
        html {
          width: 100%;
          height: 100%;
          overflow-x: hidden;
        }
        
        body {
          padding: 0;
          margin: 0;
        }
        
        .section {
          width: 100%;
          height: 400px;
          padding: 0;
          position: absolute;
          border-top: 2px solid #fff;
          border-bottom: 2px solid #fff;
        }
        
        .one {
          top: 0px;
          left: 0px;
          background: url(//repo.bfw.wiki/bfwrepo/icon/6056bf753c238.jpg) center center no-repeat;
          -webkit-background-size: cover;
          -moz-background-size: cover;
          -o-background-size: cover;
          background-size: cover;
        }
        .one #button {
          width: 122px;
          padding: 6px;
          height: 50px;
          color: #f6f6f6;
          font-family: ".........完整代码请登录后点击上方下载按钮下载查看

网友评论0