Skip to content

@keyframes zoomIn There is a compatibility problem. It will flash under some IOS systems. #1526

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

Closed
hymhub opened this issue Apr 27, 2022 · 3 comments
Labels

Comments

@hymhub
Copy link

hymhub commented Apr 27, 2022

Describe The Bug

@keyframes zoomIn There is a compatibility problem. It will flash under some IOS systems. It is recommended to change it to :

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

Steps To Reproduce

No response

Expected Behavior

No response

Screenshots

No response

Desktop

No response

Smartphone

No response

Additional Context

No response

@hymhub hymhub added the bug label Apr 27, 2022
@eltonmesquita
Copy link
Collaborator

Hey @hymhub. Thanks for reporting. Could you please share more details on this? Devices tested? A reduced case?

@knufri
Copy link

knufri commented Jun 30, 2022

Thanks @hymhub this solved my problem on Safari 15.5 on Mac OS

@hymhub
Copy link
Author

hymhub commented Mar 16, 2023

@hymhub. 感谢您的报告。你能分享更多关于这方面的细节吗?测试设备?减少的情况?

This was discovered by using the company's test machine in my previous work. I didn't pay attention to the specific model. Now I can't find the test machine. I can't provide detailed data. I'm very sorry.

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

No branches or pull requests

3 participants