Randomly invert paragraphs. Like this:
You can try it.
Add a class like this to your CSS:
.invert {
transform: rotateX(180deg);
}
Some code for page load:
$("p").each(function(index, element) {
if ( Math.random() < 0.5 ) {
$(element).addClass("invert");
}
});
It loops across every <p>
, and randomly adds the invert
class.