wangaz/contao-form-auto-grow

根据内容自动调整文本区域大小

3.1.2 2018-02-07 16:10 UTC

This package is auto-updated.

Last update: 2024-09-14 17:00:46 UTC


README

Contao CMS 自动调整文本区域大小,根据内容。

许可证

本作品受 Creative Commons Attribution-ShareAlike 4.0 International License 许可。

CSS 建议

使用以下 CSS 样式以充分利用 Auto Grow。

隐藏在调整大小时 Webkit 中有时出现的垂直滚动条

textarea {
    overflow-y: hidden;
}

隐藏 Webkit 中的调整大小手柄

textarea {
    resize: none;
}

通过 CSS 变换动画化高度

textarea {
    -moz-transition-duration: 250ms;
    -webkit-transition-duration: 250ms;
    -o-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-property: height;
    -moz-transition-property: height;
    -o-transition-property: height;
    transition-property: height;
}