Is there a way to play contents like a news ticker that moves from right to left? I found some code that works in Firefox but fails in Chrome (ref: [https://jsfiddle.net/jonathansampson/XxUXD/)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
...
I tried an alternative solution, but unfortunately it didn't work with Chrome either.
@-webkit-keyframes{
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}