提交按钮提交数据动画效果

代码语言:html

所属分类:表单美化

代码描述:提交按钮提交数据动画效果

代码标签: 数据 动画 效果

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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f1dfd1;
	background-image: linear-gradient(315deg, #f1dfd1 0%, #f6f0ea 74%);
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
		-webkit-tap-highlight-color: transparent;
}

button {
	width: 150px;
	height: 50px;
	background: none;
	border: 2px solid #89db84;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 500ms;
}

span, svg {
	position: absolute;
	color: #89db84;
	fill: transparent;
}

button:hover {
	font-size: 14px;
}

button:focus {
	outline: none;
	bo.........完整代码请登录后点击上方下载按钮下载查看

网友评论0