jQuery显示隐藏和复制表单密码字段插件
源码介绍
jQuery-peeper是一款jQuery显示隐藏和复制表单密码字段插件。该插件提供多种方式显示和隐藏表单password字段的密码,并额外提供复制密码字段为纯文本的功能。 安装 在页面中引入下面的文件。 该jQuery显示隐藏和复制表单密码字段插件的github网址为:https://github.com/msztorc/jquery-peeper简要教程
使用方法
npm install jquery-peeper
<link rel="stylesheet" href="/jquery-peeper/dist/css/jquery-peeper.min.css" />
<script src="/path/to/jquery.js"></script>
<script src="/path/to/jquery-peeper.min.js"></script>
初始化插件
$(function() {
$("#password1").peeper();
});
配置参数
$(function() {
$("#password1").peeper({
showEvent: 'mouseup', // event to show password
showElement: '.peeper-mask', // DOM element (eg. button to show password)
mask: true, // show mask
maskOpacity: 1, //mask opacity (eg. 0.5)
autohide: true, // hide password after time
autohideTime: 4000, // hide password time in ms
maskCss: 'gray', // mask style (eg. red, green, blue or custom)
showPasswordCss: 'fa fa-key', // show password icon/style
copyPasswordCss: 'fa fa-copy', // copy password icon/style
showCopyBtn: true, // copy password button
showPasswordBtn: true, // show password button
animateDuration: 300 // mask animation time
});
});
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » jQuery显示隐藏和复制表单密码字段插件
发表评论 取消回复