Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blurred slide with ticker mode on Chrome. #1291

Open
ShamimWP opened this issue Jan 27, 2021 · 5 comments
Open

Blurred slide with ticker mode on Chrome. #1291

ShamimWP opened this issue Jan 27, 2021 · 5 comments

Comments

@ShamimWP
Copy link

The slide items get blurred on the Chrome browser when Ticker mode is on.
Tried with the following versions but no difference –
4.2.1d
4.2.12
4.2.15

Help will be appreciated.

@bachirdiopmodus
Copy link

Hello Shamim
Did you find any solution to this issue ?

@ShamimWP
Copy link
Author

ShamimWP commented Feb 9, 2021

I used a CSS hack to fix this issue–
.item-selector {
backdrop-filter: blur(0);
}

@bachirdiopmodus
Copy link

I used a CSS hack to fix this issue–
.item-selector {
backdrop-filter: blur(0);
}

Thanks for the help i will try it

@chrispage1
Copy link

Same issue here - it's on a slider that's been there for years and suddenly started occurring. I think this is a new issue with a recent Chrome update.

@bennetsadyba
Copy link

Hi, I got it to work in case anybody has the same problem.

Add a class to your CSS:
.bx-fix{will-change: transform;}

than in your js code, where you invoke the slider, add:
onSlideBefore:function ($slideElement, oldIndex, newIndex) {
$(".bx-mtm").addClass('bx-fix');
},
onSlideAfter:function ($slideElement, oldIndex, newIndex) {
$(".bx-mtm").removeClass('bx-fix');
}

where .bx-mtm is my slider wrapper class.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants