线框悬浮按钮效果

代码语言:html

所属分类:悬停

代码描述:线框悬浮按钮效果

代码标签: 效果

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


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap" rel="stylesheet" >
<style>
body {
  background-color: #d3d3d3;
background-image: linear-gradient(315deg, #d3d3d3 0%, #7f8c8d 74%);
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


button {
  font-family: 'Play', sans-serif;
  font-size: 16px;
  background: transparent;
  border: 2px solid #eee;
  width: 150px;     
  height: 50px;
  border-radius: 5px;
  color: #eee;
  cursor: pointer;
  transition: 400ms ease-in-out;
  margin: 0 10px 0 10px;
}

.noselect .........完整代码请登录后点击上方下载按钮下载查看

网友评论0