I donβt know exactly how the Philips TV browser works, but the most logical test would be to tag og:image
and see if the TV displays it.
<meta property="og:image" content="http://example.com/image.png"/>
, , , . , :
. , http://whatsmyuseragent.com/ .
script, , , .
, , .
function hideSplash() {
document.getElementById("tv-splash").style.display = "none";
}
if (/Philips|Mozilla/.test(navigator.userAgent)) {
setTimeout(hideSplash, 2000);
} else {
hideSplash();
}
#tv-splash {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #f00 url(http://i.imgur.com/IonCAf7.jpg) center center no-repeat;
background-size: 50%;
z-index: 1;
}
<div id="tv-splash"></div>
<h1>My website</h1>
Hide result