angular-video-background
angular-video-background copied to clipboard
Small devices
Is it possible to show poster only on small devices?
I think so, can you try this:
@media (min-width: 300px) {
video {
background: none;
}
}
but
ng-style="{ 'background': 'url(' + posterUrl + ') #000 no-repeat center center fixed', 'z-index': zIndex}"
@media (min-width: 300px) {
video[style] {
background: none !important;
}
}
try this?