试图使用autoResize

时间:2012-03-24 01:14:38

标签: javascript jquery html css

我有这个简单的textarea。如果没有选择它,我希望它看起来像一个成品(即与文本逐渐变细的边)。我也想让用户改变宽度。如何使用autoresize插件执行此操作?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Pathway Builder</title>
    <link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>

    <textarea class="text_field_not_selected"></textarea>

    <script src="jQuery.js" type="text/javascript"></script>
    <script src="selectors.js" type="text/javascript"></script>
</body>
</html>

的JavaScript / jQuery的

$('textarea').bind('focusin blur', function() {
    $(this).toggleClass('text_field_not_selected');
});
$('textarea').autoResize();

CSS

body {
    display: block;
}

textarea:focus {
    outline:  none;
    text-align: center;
}

.text_field_not_selected {
    text-align: center;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-box-shadow: 0px 3px 5px #444;
    -webkit-box-shadow: 0px 3px 5px #444;
    padding: 5px;
}

1 个答案:

答案 0 :(得分:0)

对于第一部分,您可以使用类似

的内容
border-style: none;

对于第二部分,您只需单击并拖动文本框的右下角并调整其大小