Jump to content

Recommended Posts

Posted

Hi, thanks for replying.

I understand your information, but I didn't understand where to change it to "1" in the code.

backdrop.style.backdropFilter = "saturate(0) blur(0px)";

 

With saturate 0 will give it a washout look

 

backdrop.style.backdropFilter = "saturate(1) blur(0px)";

 

Will make the backdrop look normal

 

backdrop.style.backdropFilter = "saturate(1.8) blur(0px)";

 

Will bring out the color substantially.

arrbee99
Posted

Well this should do what you want @@arrbee99 with css

.overflowYScroll.withSectionTabs div.backgroundContainer.withBackdrop {
    background: rgba(0,0,0,.10); backdrop-filter: saturate(1.8) blur(1.5em)
}

.overflowYScroll div.backgroundContainer.withBackdrop {
    background: rgba(0,0,0,.10);
}
Might need to add the "-webkit-backdrop-filter" for other browsers as shown in post 7.

 

 

So I should add this to the css I have, while keeping chefs other code, and they kind of work in conjunction with each other ?

 

I tried doing that and changing say, blur in the above to 0 and nothing seemed to change.

Happy2Play
Posted

Well chefs code has to be done with every update, this css only only once.  I would not use both as I would assume chefs script would override css (guessing).

  • Like 1
arrbee99
Posted

Well chefs code has to be done with every update, this css only only once.  I would not use both as I would assume chefs script would override css (guessing).

 

Ah ok, its an either/or thing. Thank you. I shall have another quick play.

arrbee99
Posted

Ah ok, its an either/or thing. Thank you. I shall have another quick play.

 

Tried with just the Happy2play version enabled and adjusting blur does work now. Thanks again.

 

On a general note, if you guys have had a play with the backdrops on the home page enabled, and then you go to a movie detail screen or something, do you find you get a quick view of the previous blurred image being shown (though its actually not blurred at all any more) on the movie details page before the proper movie details page appears ?

Posted (edited)

Found by four clients, an issue that forced me to remove the code entirely. When playing, the videos and subtitles were blurred. By testing, I confirmed the problem.

post-26813-0-65938100-1575240381_thumb.png

Edited by CarlosLima
arrbee99
Posted

Just played 2 things fine in Chrome using the code in post #17, on same pc as server. No idea about subtitles though.

Happy2Play
Posted (edited)

Tried with just the Happy2play version enabled and adjusting blur does work now. Thanks again.

 

On a general note, if you guys have had a play with the backdrops on the home page enabled, and then you go to a movie detail screen or something, do you find you get a quick view of the previous blurred image being shown (though its actually not blurred at all any more) on the movie details page before the proper movie details page appears ?

 

Pretty sure that is the ".backdropImageFadeIn" animation in the backdropcontainer backdropimages.  If you disable them in the console you see a instant change right?

Edited by Happy2Play
Posted

Just played 2 things fine in Chrome using the code in post #17, on same pc as server. No idea about subtitles though.

Happy2Play
Posted

Found by four clients, an issue that forced me to remove the code entirely. When playing, the videos and subtitles were blurred. By testing, I confirmed the problem.

Was just going to say I didn't have any issue playing media with srt subtitles with my code.

arrbee99
Posted

Pretty sure that is the ".backdropImageFadeIn" animation in the backdropcontainer backdropimages.  If you disable them in the console you see a instant change right?

 

It might well be except I have no idea how to disable anything in Console.

arrbee99
Posted

Thanks for the info, I will try CSS.

 

Good luck.

Posted

Was just going to say I didn't have any issue playing media with srt subtitles with my code.

Posted

Hi, the problem occurred with the other html code and not with your CSS.

I will apply your code to test.

Thank you

Happy2Play
Posted

It might well be except I have no idea how to disable anything in Console.

 

Like this uncheck the code, then navigate to itemdetails.

 

5de44af8eb29c_console.jpg

Happy2Play
Posted

@@chef your script affects the video players also.

 

5de44de198a63_player.jpg

Posted
Happy2Play
Posted

Weird, are you saying that the JavaScript blurred the subtitles?

 

 

I had subs enabled but the media was blurred also.

Posted (edited)
Edited by chef
Posted (edited)

I had subs enabled but the media was blurred also.

Looks like maybe the backdrop container is always on top.

 

Using background-filter would do that.

 

Still very interesting.

Edited by chef
Happy2Play
Posted

Looks like maybe the backdrop container is always on top.

 

Using background-filter would do that.

 

Still very interesting.

I don't understand how it is being added to "class="backgroundContainer backgroundContainer-transparent"" though.  But clearly removing your code resolves the issue.

arrbee99
Posted

Like this uncheck the code, then navigate to itemdetails.

 

5de44af8eb29c_console.jpg

 

I've looked, but can't find anything under Elements that mentioned ImageFadeIn. Not sure if its worth bothering about.

Posted (edited)

I don't understand how it is being added to "class="backgroundContainer backgroundContainer-transparent"" though. But clearly removing your code resolves the issue.

Did you start playback from the home screen or library without first going to the itemdetails page?

 

Because if the user press the play button from the card, then the effect wouldn't have been removed from backgroundContainer since the itemsDetails page wasn't viewed (which is the only time the effect is lifted).

 

Maybe.

Edited by chef

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...