vue-gecode
Version:
基于Vue2开发的获取验证码倒计时组件,高度自定义配置,可实现各种开发需求.
19 lines (17 loc) • 571 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><script type=text/javascript src=vue-gecode.min.js></script></body></html>