我如何制作星球大战介绍塑造textarea?

时间:2013-12-22 22:15:48

标签: javascript jquery html css

通常情况下,textareas只是无聊的老字号:

An ordinary textarea with the opening text from The Empire Strikes Back.

但是,是否有可能制作出类似“星球大战”简介的文本区域?

The famous opening text from The Empire Strikes Back.

**注意:灵感来自SO #20734620: unusual shape of a textarea - 请参阅评论。*

更新:感谢Niet the Dark Absol我能够让它运转起来。只需要玩字体和颜色。 Text area shaped like star wars crawl

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;
}

1 个答案:

答案 0 :(得分:13)

尝试3D变换:

#starwarstextareaofawesome {
    width:600px;
    height:500px;
    transform:perspective(1000px) rotateX(45deg);
}

Demo