jquery密码输入框带显示隐藏明文密码特效代码

所属分类: 网页特效-其它&杂项    2023-11-22 04:19:00

jquery密码输入框带显示隐藏明文密码特效代码 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

jquery密码输入框带显示隐藏明文密码特效代码(共2个文件)

    • show-hide-password.js
    • index.html

使用方法

(function($) {
  'use strict';
  $.fn.showHidePassword = function(option) {
    $.extend(this, option);

    var element = $(this);

    // Check bootstrap input group
    var inputGroupCheck = element.parent().hasClass('input-group');

    if (inputGroupCheck) {
      element.css({
        borderTopRightRadius: '4px',
        borderBottomRightRadius: '4px'
      });
    } else {
      element.wrap('<div class="password-container"></div>');
    }

    element.after('<span class="show-hide-password"><i class="fa fa-eye"></i></span>');

    // Add postion css password container
    $('.password-container').css({position: 'relative'});

    var showHideIcon = element.parent().find('.show-hide-password');

    // Add eye icon css
    $(showHideIcon).css({
      position: 'absolute',
      display: 'none',
      top: '0',
      right: '0',
      height: element.outerHeight(true) - 2,
      marginTop: '1px',
      padding: '6px 11px',
      //borderLeft: '1px solid #CCC',
      cursor: 'pointer',
      zIndex : '999',
      color : 'black'
    });

    // Show eye icon when you start entering password
    element.keyup(function(event) {
      var keyUp = $(this);
      var passwordVal = keyUp.val();

      if (passwordVal.length > 0) {
        // Add padding password input
        keyUp.css({paddingRight : '34px'});

        if (inputGroupCheck) {
          $(showHideIcon).css({padding: '8px 11px'});
        }

        // Show eye icon
        keyUp.parent().find(showHideIcon).show();
      } else if (element.val() == '') {
        // If is empty hide eye icon
        keyUp.parent().find(showHideIcon).hide();
      }
    });

    // If is not empty show eye icon
    element.trigger('keyup');

    // Change eye icon class
    $(showHideIcon).on('click', function() {
      var iconElement = this;

      // Change eye icon
      $(iconElement).find('i').toggleClass('fa-eye fa-eye-slash');

      var findInputPassword = $(iconElement).parent().find('input');
      var passwordFieldType = findInputPassword.attr('type');

      // Show Hide Password
      if (passwordFieldType == 'password') {
        findInputPassword.attr('type', 'text');
      } else {
        findInputPassword.attr('type', 'password');
      }
    });
  }
})(window.jQuery);

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 其它&杂项

jquery公告栏标题定时切换的轮播特效

一款带箭头可上下切换的公告标题,默认自动切换,鼠标hover不执行切换。
  其它&杂项
 8242  0

jquery跟随鼠标移动的垂直滚动进度条特效代码

一个跟随鼠标移动的垂直进度条插件,其百分比值始终位于光标后面,当滚动网页时实时显示当前百分比进度。
  其它&杂项
 8407  0

js获取json文件数据动态随机输出显示特效代码

这是一款从json文件获取数据并输出显示的脚本插件,点击按钮自动从json文件中随机抽取一条数据,并显示出来。
  其它&杂项
 7454  0

纯CSS创建的透明变色的button按钮效果

一款很奇妙的透明按钮特效,滚动页面当按钮悬停于背景图片上时,自动变更button背景透明色,根据不同的背景图片进行不同的变换。
  其它&杂项
 6208  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论