jquery实现炫酷带过渡动画效果的选择框效果代码

代码语言:html

所属分类:表单美化

代码描述:jquery实现炫酷带过渡动画效果的选择框效果代码

代码标签: jquery 过渡 动画 选择框

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">




    <style>
        @import url("https://fonts.googleapis.com/css?family=Muli:300,400,700,900");
        .btn-wrap {
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none;
        }
        
        html {
          display: flex;
          justify-content: center;
          align-items: center;
          background: #f1f3f9;
          height: 100vh;
          font-family: "Muli", Arial, sans-serif;
        }
        
        #dribbble {
          position: fixed;
          display: block;
          right: 70px;
          bottom: 16px;
        }
        #dribbble svg {
          display: block;
          width: 76px;
          height: 24px;
          fill: rgba(146, 156, 208, 0.8);
        }
        
        #twitter {
          position: fixed;
          display: block;
          right: 25px;
          bottom: 11px;
        }
        #twitter svg {
          width: 24px;
          height: 24px;
          fill: rgba(146, 156, 208, 0.8);
        }
        
        #hicon {
          position: fixed;
          display: block;
          left: 25px;
          bottom: -42px;
        }
        #hicon svg {
          width: 78px;
          height: 78px;
          fill: rgba(146, 156, 208, 0.8);
        }
        
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0