900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > JS仿支付宝input文本输入框放大组件详解

JS仿支付宝input文本输入框放大组件详解

时间:2024-03-11 01:08:50

相关推荐

JS仿支付宝input文本输入框放大组件详解

web前端|js教程

javascript,input,放大

web前端-js教程

本文主要为大家带来一篇JS 仿支付宝input文本输入框放大组件的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。

在线表白源码下载,ubuntu无法修改源,tomcat挂掉不知道原因,获取酒店数据 爬虫,哈尔滨PHP最新招聘信息,厦门搜狗seolzw

input输入的时候可以在后边显示数字放大镜

shopnc java商城 源码,vscode文件没了,ubuntu uedit,tomcat直接复制,sqlite设置外键语句,headroom.js插件使用方法,eb前端框架通用技术交流,爬虫能用到装饰器吗,php 文件上传 中文,徐州seo外包费用,网站中菜单栏怎么横着,网页响应式布局,商户信息表 模板lzw

JS 仿支付宝input文本输入框放大组件* { margin: 0; padding: 0; border-width: 1px; } .parentCls {margin:5px 60px 0;} .js-max-input {border: solid 1px #ffd2b2; position:relative;background: #fffae5;padding: 0 10px 0 10px;font-size:20px;color: #ff4400} .inputElem4{ width: 300px; height: 36px; border: 1px solid #E0E0E0; padding-left: 10px; line-height: 36px; font-size: 14px; }

源码网站棋牌,vscode全套软件使用,ubuntu宝塔面板,tomcat gc配置,sqlite数据库降序,爬虫机器人的基本结构,iss php,临海谷歌seo公司,什么是js动态网站,我网站上的漂浮广告到下面就把网页给拉长了,html5制作相册模板lzw

// 初始化 $(function(){ new TextMagnifier({ inputElem: .inputElem4, align: ottom, splitType: [6,4,4,4] }); });

/** * JS 仿支付宝的文本输入框放大组件 */ function TextMagnifier(options) { this.config = { inputElem : .inputElem, // 输入框目标元素 parentCls : .parentCls, // 目标元素的父类 align : ight, // 对齐方式有 [ op,ottom,left, ight]四种 默认为top splitType : [3,4,4], // 拆分规则 delimiter : - // 分隔符可自定义 }; this.cache = { isFlag : false }; this.init(options); } TextMagnifier.prototype = { constructor: TextMagnifier, init: function(options) { this.config = $.extend(this.config,options || {}); var self = this, _config = self.config, _cache = self.cache; self._bindEnv();}, /* * 在body后动态添加HTML内容 * @method _appendHTML */ _appendHTML: function($this,value) { var self = this, _config = self.config, _cache = self.cache; var html = \, $parent = $($this).closest(_config.parentCls); if($(.js-max-input,$parent).length == 0) { html += \; $($parent).append(html); } var value = self._formatStr(value); $(.js-max-input,$parent).html(value); }, /* * 给目标元素定位 * @method _position * @param target */ _position: function(target){ var self = this, _config = self.config; var elemWidth = $(target).outerWidth(), elemHeight = $(target).outerHeight(), elemParent = $(target).closest(_config.parentCls), containerHeight = $(.js-max-input,elemParent).outerHeight();$(elemParent).css({"position": elative}); switch(true){case _config.align == op: $(.js-max-input,elemParent).css({position:absolute, op :-elemHeight - containerHeight/2,left:0}); break;case _config.align == left: $(.js-max-input,elemParent).css({position:absolute, op :0,left:0}); break;case _config.align == ottom: $(.js-max-input,elemParent).css({position:absolute, op :elemHeight + 4 + px,left:0}); break;case _config.align == ight: $(.js-max-input,elemParent).css({position:absolute, op :0,left:elemWidth + 2 + px}); break; } }, /** * 绑定事件 * @method _bindEnv */ _bindEnv: function(){ var self = this, _config = self.config, _cache = self.cache; // 实时监听输入框值的变化 $(_config.inputElem).each(function(index,item){ $(item).keyup(function(e){ var value = $.trim(e.target.value),parent = $(this).closest(_config.parentCls); if(value == \) {self._hide(parent); }else {var html = $.trim($(.js-max-input,parent).html());if(html != \) {self._show(parent);} } self._appendHTML($(this),value); self._position($(this)); }); $(item).unbind(focusin); $(item).bind(focusin,function(){ var parent = $(this).closest(_config.parentCls),html = $.trim($(.js-max-input,parent).html()); if(html != \) {self._show(parent); } }); $(item).unbind(focusout); $(item).bind(focusout,function(){ var parent = $(this).closest(_config.parentCls); self._hide(parent); }); }); }, /** * 格式化下 * @method _formatStr */ _formatStr: function(str){ var self = this, _config = self.config, _cache = self.cache; var count = 0, output = []; for(var i = 0, ilen = _config.splitType.length; i 0){ output.push(s); } count+= _config.splitType[i]; } return output.join(_config.delimiter); }, /* * 显示 放大容器 * @method _show */ _show: function(parent) { var self = this, _config = self.config, _cache = self.cache; if(!_cache.isFlag) { $(.js-max-input,parent).show(); _cache.isFlag = true; } }, /* * 隐藏 放大容器 * @method hide * {public} */ _hide: function(parent) { var self = this, _config = self.config, _cache = self.cache; if(_cache.isFlag) { $(.js-max-input,parent).hide(); _cache.isFlag = false; } } };

效果图

JS 仿支付宝input输入显示数字放大镜

JavaScript高仿支付宝倒计时页面及代码实现

JavaScript仿支付宝密码输入框_javascript技巧

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。