简体   繁体   中英

Jssor - Z-index of Transition Effects

http://autolead.ca/SCARBOROAUTOLOANS/m-index.html

This is my beta design i am working on modifying for a mobile webpage.

I am trying to make circular slider in the middle of the circle.

Seems to be working everything except the slide show. Seems like something in the responsive structure of the page is causing the 'Z-Index' of the Transition effect to fall below the surface layer - but i'm not exactly sure on this.

Any ideas on how to get arround this conflict or am i doing something wrong?

remove following lines in framework.css (better not specify such css for all div in framework.css)

div {
    overflow: hidden; display: block; position: relative;
}

and in style.css, replace

.homePageWrapper .landingImageWrapper {
    border-radius: 50%; border: 12px solid rgb(255, 255, 255); border-image: none; width: 312px; height: 312px; margin-right: auto; margin-bottom: 35px; margin-left: auto; box-shadow: 0px 12px 0px rgba(0,0,0,0.12); background-color: rgb(255, 255, 255);
}

with

.homePageWrapper .landingImageWrapper {
    border-radius: 50%; border: 12px solid rgb(255, 255, 255); border-image: none; width: 312px; height: 312px; margin-right: auto; margin-bottom: 35px; margin-left: auto; box-shadow: 0px 12px 0px rgba(0,0,0,0.12); /*background-color: rgb(255, 255, 255);*/
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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