Stretchy设置表单元素自适应宽度/高度

发布于 2017-06-01 11:35:52 字数 2842 浏览 1722 评论 0

Stretchy是一个设置表单元素自适应宽度/高度的JavaScript插件,不仅仅可以设置文本框,下拉菜单也可以自适应高度/宽度,可根据用户的数据自动伸缩表单元素,也可以固定宽度自动换行适应高度。

Stretchy设置表单元素自适应宽度/高度

特点

  • 能够处理多种表单元素:Textareas、Inputs、Select等。
  • 轻量级简约的插件,压缩版本只有1.5KB。
  • 能够自动伸缩宽度和高度,或者固定宽度自适应高度。
  • 完全独立,不依赖于任何第三方库。
  • 和现有的HTML/CSS兼容性好,例如占位符、宽度、高度等。
  • 不需要编写JS代码,完全通过HTML属性值操作。
  • 兼容性好,能完美的兼容Chrome、FF 3.6以上、IE9以上、Opera、Safari 和 Android等多个浏览器。

使用方法

只需要在页面中引入 stretchy.min.js 文件。

<script src="stretchy.min.js" async></script>

默认情况下,他会应用到<textarea><select><input> 元素,而 <input> 元素的这些属性 texttelemailurl 可被自动应用。

对于多行文本框,会自动自适应高度,而宽度就是你初始设置的值,Stretchy不会去更改。

JavaScript API

Stretchy has a spartan API, since in most cases you don’t need to call it at all. Stretchy works via event delegation and detects new elements via mutation observers, so you do not need to call any API methods for adding new elements via scripting (e.g. AJAX).

If needed, these are Stretchy’s API methods:

Stretchy.resize(element)
Autosize one element based on its content. Note that this does not set up any event listeners, it just calculates and sets the right dimension (width or height, depending on the type of control) once.
Stretchy.resizeAll(elements)
Apply Stretchy.resize() to a collection of elements, or all Stretchy is set to apply to, if no argument is provided.
Stretchy.resizes()
Can Stretchy be used on this particular element? (checks if element is in the DOM, if it's of the right type and if it matches the selector filter provided by data-stretchy-selector, if the attribute is set.
Stretchy.active
Boolean. Set to false to temporarily disable Stretchy.

注意事项

  • 在浏览器窗口尺寸发生变化的时候,你可以调用 Stretchy.resize() 自适应新的元素。
  • IE因为 scrollWidth 属性的原因,不兼容 <input> 的自适应,如果这对你很重要,你可以试试 scrollWidthPolyfill

相关链接

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

JSmiles

生命进入颠沛而奔忙的本质状态,并将以不断告别和相遇的陈旧方式继续下去。

0 文章
0 评论
84960 人气
更多

推荐作者

遂心如意

文章 0 评论 0

5513090242

文章 0 评论 0

巷雨优美回忆

文章 0 评论 0

junpengz2000

文章 0 评论 0

13郎

文章 0 评论 0

qq_xU4RDg

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文