vue-gecode
Version:
基于Vue2开发的获取验证码倒计时组件,高度自定义配置,可实现各种开发需求.
34 lines (29 loc) • 564 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>gecode验证码获取组件</title>
<style>
.btn {
border-radius: 5px;
line-height: 35px;
height: 35px;
display: inline-block;
padding: 0 20px;
cursor: pointer;
background: hsla(240, 100%, 40%, 1);
transition: .3s all;
color: #fff;
}
.btn:hover {
background: hsla(240, 100%, 40%, .7);
}
.btn.isRun {
background: #ccc;
}
</style>
</head>
<body>
<div id='app'></div>
</body>
</html>