Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make a Star Wars introduction shaped textarea?

Normally, textareas are just boring old oblongs:

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

But is it possible to make a textarea shaped like the introduction to Star Wars?

The famous opening text from The Empire Strikes Back.

**Note: Inspired by SO #20734620: unusual shape of a textarea—see comments.*

Update: Thanks to Niet the Dark Absol I was able to get it working. Just need to play with the font and color. 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;
}
like image 596
ialexander Avatar asked Dec 22 '13 22:12

ialexander


1 Answers

Try a 3D transform:

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

Demo

like image 52
Niet the Dark Absol Avatar answered Nov 14 '22 14:11

Niet the Dark Absol