使用 Iframe 嵌入 YouTube 视频后在 Android 上的滚动效果
我正在用三个不同的视频制作一个滑块。我在 YouTube 视频嵌入方面遇到了一些问题,就好像我使用 object 参数嵌入视频一样,它在除 MAC 之外的每个设备上都能正常工作。我应用了替代方案,因为我使用 iframe 嵌入视频,现在到处都很好,但出现的问题是,屏幕的滚动效果在 Android 手机上停止工作。我尝试过应用js代码,但仍然卡在Android上。如果有人想测试自己的设计,我的设计的 URL 如下:
如果您有合适的解决方案,请提供。
I am making a slider with three different videos. I have some problems regarding the youtube videos embedding as if i embed the videos using object parameter, it works fine on each and every device except on MAC. I applied an alternative for this as i embedded the videos using iframe, now its fine everywhere but the problem occured is, the scrolling effect of the screen has stopped working on Android phones. I have tried applying js codes but still its stuck on Android. URL for my design is as follows if anybody wants to test the design on their end:
Please provide a proper solution if you have any.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试不要将
oneByOne_item
类的 div 设置为display:none
。将它们设置为
display:none
实际上会将它们从渲染 DOM 中删除。而且你不需要这样做,因为容器无论如何都是
overflow:hidden
..Try not setting the divs with the class
oneByOne_item
todisplay:none
.Setting them to
display:none
will actually remove them from the render DOM.And you dont need to that since the container is
overflow:hidden
anyway..