Best books about Javasript
|
JavaScript Rotate the text 90 degree
Click
on the following text. It will rotate 90 degree. (It
only works for Internet Explorerer)
<div id=test style="POSITION: relative">this is
test. Turn it 90 Degree. Can you read?</div>
How
to do it?
Since IE version 5.5, it is allowed to rotate text. The following
javascript rewrite the property writingMode in object's style to
rotate the text
<SCRIPT language=JavaScript>
document.onclick = rotate; function rotate() {
if (test.style.writingMode == "lr-tb") {
test.style.writingMode = "tb-rl";
}
else {
test.style.writingMode = "lr-tb";
}
}
</SCRIPT>
|
Add <div id=test style="POSITION: relative">your
rotated text here </div> to
your web page
|