Here are 2 categories and 3 solutions.
1: Use flash+xml to implement.
Put the content into XML, read it in flash and load it into the set scene. text sets the text direction.
2: Use the swf suffix in the html page.
Example: <param name=movie value=index.swf?name=text content/>
The others are basically the same as the first one.
As3 gets the parameter problem after address swf
3: Make the width and height of p to achieve vertical arrangement of text. (Chinese characters)
First, confirm the unit, use em, set the height of p. Assume it is 20em, then a column will have 20 characters.
cssQuote #content{overflow:hidden;clear:both;text-align:right}/*text-align indicates the starting direction of the text, left or right. */
#content p{font-size:14px;width:1.2em;display:inline;text-align:center;line-height:1.5em;}
htmlQuote <div id=content>
<p>The content is here</p>
<p>The content is here</p>
<p>The content is here</p>
</div>
In this way, there is no picture in the content. There is a <p> at the beginning and a </p> at the end. Then use js to find the words 20th, 40th, 60th, 80th..., add </p> <p> afterwards, and replace it with </p> <p> when you encounter br and replace it with </p> <p> when you encounter br
This replacement seems very familiar, oh, here lets users edit text better