For a number of projects now I have had elements on the page which I want to translate out of the screen area (have them fly out of the document). In proper code this should be
get the document width. then use a java script trigger to trigger the css3 translation.
function translate(){ var width = document.body.Width; document.getElementById('whateverdiv').style='translateX(' + width + 'px)'; }