I want to change direction of web page, I could change it using CSS method like below:
.flip {
-moz-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
-ms-filter: fliph; /*IE*/
filter: fliph; /*IE*/
}
and add class flip into body section like this:
<body class="flip">
As you know, page will flip horizontally completely, the problem is texts in page, that we can't read it, I'm looking for a solution to use JavaScript to UN-FLIP ONLY TEXTS in page. I mean only texts will be back to normal.
Is there anyway to use JavaScript to un-flip only texts in page?
I highly appreciate your help on this issue.
Thanks in advance