jquery - Slideshow and captions not working in IE -
i'm afraid coding knowledge basic , i'm having trouble working on website client. i'm using slideshow i'm finding works if don't include < doctype ! html >
reason.
i have added captions, works fine on chrome , firefox, on ie they'll not show @ unless doctype there. slideshow starts scrolling instead!
i'm trying find solution can both arrow controlled slideshow , captions works on ie. knowledge of jquery next nothing. please help!
did download file?
you shure put code?
figure { display: block; position: relative; float: left; overflow: hidden; margin: 0 20px 20px 0; } figcaption { position: absolute; background: black; background: rgba(0,0,0,0.75); color: white; padding: 10px 20px; opacity: 0; -webkit-transition: 0.6s ease;<!--this make works in safari/chrome--> -moz-transition: 0.6s ease;<!--this make works in mozila--> -o-transition: 0.6s ease;<!--this make works in opera--> } figure:hover figcaption { opacity: 1; } figure:before { content: "?"; position: absolute; font-weight: 800; background: black; background: rgba(255,255,255,0.75); text-shadow: 0 0 5px white; color: black; width: 24px; height: 24px; -webkit-border-radius: 12px;<!--this makes works safari/chrome--> -moz-border-radius: 12px;<!--this make works in mozila--> border-radius: 12px; text-align: center; font-size: 14px; line-height: 24px; -moz-transition: 0.6s ease; opacity: 0.75; }
Comments
Post a Comment