简体   繁体   English

菜单弹出窗口下方的Javascript库

[英]Javascript gallery below menu popup

Im creating a mobile version for my website, and I'm currently busy with a 'image scroll' by swiping. 我正在为我的网站创建一个移动版本,而我目前正通过滑动来忙于“图像滚动”。 I found a code on the internet I'm using, but it doesn't work with the menu i've created. 我在使用的互联网上找到了一个代码,但是它与我创建的菜单不兼容。 The menu that pops up, stays below the image scroller.. How do I get it to get below the opened menu? 弹出的菜单停留在图像滚动器下方。如何获取打开的菜单下方的菜单?

Thanks for the help! 谢谢您的帮助!

Regarding this page: http://m.tf2-29.com/TF_Members.asp 关于此页面: http : //m.tf2-29.com/TF_Members.asp

Try to set z-index of popmenu 尝试设置popmenu的z-index

https://developer.mozilla.org/en-US/docs/Web/CSS/z-index https://developer.mozilla.org/zh-CN/docs/Web/CSS/z-index

.bbstable
{
   BACKGROUND: #1e201c;
   margin: 0px;
   padding: 0px;
   z-index: 2; /* set z-index higher than image scroller */
}

or remove z-index: 1 in .swiper-container 或删除.swiper-container中的z-index: 1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM