通常情况下,textareas只是无聊的老字号:
但是,是否有可能制作出类似“星球大战”简介的文本区域?
**注意:灵感来自SO #20734620: unusual shape of a textarea - 请参阅评论。*
更新:感谢Niet the Dark Absol我能够让它运转起来。只需要玩字体和颜色。
textarea {
width:600px;
height:500px;
transform:perspective(1000px) rotateX(45deg);
display:block;
margin:0 auto;
text-align: center;
line-height:200%;
color: yellow;
background-color: black;
font-size: 1.75em;
}
答案 0 :(得分:13)
尝试3D变换:
#starwarstextareaofawesome {
width:600px;
height:500px;
transform:perspective(1000px) rotateX(45deg);
}