Snow Effect over Client

Hey folks,

I’m getting the Christmas displays ready on my CMS, and as far as I know there is no sort of snow effect in Xibo itself.

I’m wondering if anyone has any idea on how to achieve it?

CSS can do it…

Make your content a HTML Page with the css class below

#snow{ background: none; font-family: Androgyne; background-image: url('http://www.wearewebstars.dk/codepen/img/s1.png'), url('http://www.wearewebstars.dk/codepen/img//s2.png'), url('http://www.wearewebstars.dk/codepen/img//s3.png'); height: 960px; left: 0; position: absolute; top: 0; width: 1920px; z-index:1; -webkit-animation: snow 10s linear infinite; -moz-animation: snow 10s linear infinite; -ms-animation: snow 10s linear infinite; animation: snow 10s linear infinite; } @keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;} } @-moz-keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 400px 1000px, 200px 400px, 100px 300px;} } @-webkit-keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;} } @-ms-keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;} }

2 Likes

Any help with doing this - I can’t get it to work

Hi there,

See example

Thanks

1 Like

Thanks Ben ! how do I import this into Xibo ?

This is a Webpage, the files need to be put on a web server like IIS or your website then use Xibo to display a webpage.