angular-video-background icon indicating copy to clipboard operation
angular-video-background copied to clipboard

Small devices

Open TsarS opened this issue 9 years ago • 3 comments

Is it possible to show poster only on small devices?

TsarS avatar Sep 09 '15 15:09 TsarS

I think so, can you try this:

@media (min-width: 300px) {
    video {
        background: none;
    }
}

2013gang avatar Sep 14 '15 17:09 2013gang

but ng-style="{ 'background': 'url(' + posterUrl + ') #000 no-repeat center center fixed', 'z-index': zIndex}"

TsarS avatar Sep 14 '15 20:09 TsarS

@media (min-width: 300px) {
    video[style] {
       background: none !important;
    }
}

try this?

2013gang avatar Sep 14 '15 21:09 2013gang