Textarea 是一种具有动态宽度和高度的框,这意味着当在其中输入文本时,文本不会溢出,并且只会被包含在该 texarea 中,因为它可以动态增加或减少其高度和宽度。 textarea主要用在表单内部,用于获取用户的完整地址以及其他文本内容较大的内容。
通常,文本区域是正方形或矩形的形式,可以使用 JavaScript 和 CSS 进行更改。在本文中,我们将学习使用 JavaScript 更改文本区域形状的方法。
要使用 JavaScript 更改文本区域的形状,我们可以使用具有不同值的不同 CSS 属性来塑造不同结构的文本区域。
要将文本区域的形状更改为平行四边形,我们可以在 JavaScript 中使用 CSS 的 style.transform 属性,并使用 skew() 给出的值。
以下语法将帮助您理解如何使用上述方法来更改文本区域的形状 -
selected_textarea.style.transform = "skew(40deg)";
让我们通过在代码示例中实际实现它来详细了解它,看看它如何改变文本区域的形状。
第 1 步 - 在第一步中,我们将向 HTML 文档添加一个文本区域,稍后我们将使用 JavaScript 更改其形状。
步骤 2 - 在此步骤中,我们将添加一个带有与其关联的 onclick 事件的按钮元素,稍后在单击按钮时调用一个函数并更改文本区域的形状.
第 3 步 - 在下一步中,我们将定义一个 JavaScript 函数,在该函数中我们将抓取 textarea 元素并使用上面编写的语法将其形状更改为平行四边形。< /p>
第 4 步 - 在最后一步中,我们将 JavaScript 函数作为值分配给按钮的 onclick 事件,以便稍后在单击按钮时调用该函数.
下面的示例将向您解释如何使用 CSS 的 transform 属性将文本区域的形状更改为平行四边形的方法 -
<html> <body> <h2>Change the shape of a textarea</h2> <p id = "upper">The shape of below textarea will be changed once you click the button.</p> <textarea id = "textar">Enter something in the textarea.....</textarea> <br> <br> <button id = "btn" onclick = "changeShape()">Click to change the shape</button> <p id = "result"> </p> <script> var result = document.getElementById("result"); var upper = document.getElementById("upper"); function changeShape() { var textar = document.getElementById('textar'); textar.style.transform = "skew(50deg)"; upper.innerHTML = " The shape of the below textarea is changed as you clicked the button. "; result.innerHTML += " The shape of the textarea is changed to parallelogram using style.transform = 'skew(50deg)'"; } </script> </body> </html>
在上面的示例中,我们使用了带有 skew() 值的 Transform 属性,将文本区域的形状更改为平行四边形。
要将文本区域的形状更改为椭圆形,我们可以使用 JavaScript 中 CSS 的 borderRadius 属性,其值为 50%。
可以遵循以下语法,使用 borderRadius 属性将文本区域的形状更改为椭圆形 -
selected_textarea.style.borderRadius = "50%";
让我们看看这个方法的实际实现,以了解它的工作原理。
这个例子的算法与上一个例子的算法几乎相似。您只需执行一些小的更改,将上例中的 transform 属性替换为 borderRadius 属性,并将其值设置为 50%获取文本区域的椭圆形状。
下面的示例将说明如何使用 borderRadius 将文本区域的形状更改为椭圆形 -
<html> <body> <h2>Change the shape of a textarea to an ellipse</h2> <p id = "upper">The shape of below textarea will be changed once you click the button.</p> <textarea id = "textar">Enter something in the textarea.....</textarea> <br> <br> <button id = "btn" onclick = "changeShape()">Click to change the shape</button> <p id = "result"> </p> <script> var result = document.getElementById("result"); var upper = document.getElementById("upper"); function changeShape() { var textar = document.getElementById('textar'); textar.style.borderRadius = "50%"; upper.innerHTML = " The shape of the below textarea is changed as you clicked the button. "; result.innerHTML += " The shape of the textarea is changed to ellipse using style.borderRadius = '50%'"; } </script> </body> </html>
在上面的示例中,我们借助 borderRadius 属性,使用 JavaScript 将文本区域的形状从矩形更改为椭圆形。
在本文中,我们详细讨论了将文本区域的形状更改为两种不同形状的两种不同方法,并借助每种方法的代码示例。也可以使用 JavaScript 中的其他 CSS 属性将 textarea 的形状更改为其他形状,因此请继续搜索并继续学习。
以上是如何使用 JavaScript 更改文本区域的形状?的详细内容。更多信息请关注PHP中文网其他相关文章!