I'm using the tubular plugin (http://www.seanmccambridge.com/tubular/) to create a subtle html video background. This works in Chrome, but in Safari 7 on Mac, the video won't start.
I've narrowed it down to the z-index being the reason of why safari won't autostart the video. When I change the z-index of the tubularContainer (defaults to 1) to a value above my other content (e.g. 9999) the video starts just fine.
var tubularContainer = '<div id="tubular-container" style="overflow: hidden; position: fixed; z-index: 1; width: 100%; height: 100%"><div id="tubular-player" style="position: absolute"></div></div><div id="tubular-shield" style="width: 100%; height: 100%; z-index: 1; position: absolute; left: 0; top: 0;"></div>';
Does anyone know how to circumvent this safari behaviour? It's as if the video won't start when there's content above it with z-index.