- This topic is empty.
-
AuthorPosts
-
March 25, 2012 at 11:06 pm #37336
newagekat
MemberHello:
I’m using anything slider for the first time. I love it! I have installed v1.4 in my CMS (cms made simple). I have it working in firefox, safari, and chrome. It even works in IE 9 BUT only in compatible mode. In standard mode it appears that the slides are stacking. I can generally figure out how to fix IE css issues, but javascript is, well, beyond my understanding.
I have tried to add the meta tag to force compatibility mode ( ), no go.
i have removed the first slide, the movie, still no go.
i have even removed this line from the head:
onSlideComplete : function(slider){ // alert(‘Welcome to Slide #’ + slider.currentPage);
}
still nothing.We are approaching a launch and i need this resolved. the website in question is : http://tc2.ca/cmsms/
any suggestion is highly welcome. This is most URGENT. thank you.
kpMarch 26, 2012 at 9:54 am #99935Mottie
MemberHi KP!
Download the newest version of AnythingSlider from here. It includes an “anythingslider-ie.css” file that is loaded using conditional comments (see the wiki documentation on how to set it up)
March 26, 2012 at 10:45 am #99936newagekat
MemberSorry Mottie:
i made an error. i’m using v1.7.26 and i do have the IE stylesheet inside conditional comments. I’m also using the cs-portfolio theme – which i’ve modified a little.March 26, 2012 at 10:47 am #99938Senff
ParticipantI’m not sure that the issue is on a CSS level. Inspecting the code in IE9 shows that there is no code applied to/around the UL with id “slider”, so I’m thinking there’s something wrong with the jQuery call.
Any reason why you load both 1.5 and 1.7.1 of the jQuery libraries?
March 26, 2012 at 11:00 am #99940newagekat
Membersometimes it’s tricky because some scripts never get upgraded so you have to have more than one jquery call. but i only see one call to jquery1.5 the line above is a function call i think.
as to conditional comments mine reads:
is this stylesheet for any IE version or just for 7 and older?March 27, 2012 at 9:29 am #100036Mottie
MemberThe IE stylesheet is meant for IE7 and older.
I’m not really sure what you are asking now…
January 14, 2013 at 3:18 pm #121061newagekat
MemberMottie:
i got the slider working. you can view it at http://tc2.ca I added the fade option to the function call and the relevant css. if you notice, the first time it loads, the first slide repeats. any idea how to smooth that out?January 14, 2013 at 4:20 pm #120989Mottie
MemberHi @newagekat!
It looks like you are using version 1.7.26 of the slider. The newest version (1.8+) of AnythingSlider has a [`mode` option](https://github.com/CSS-Tricks/AnythingSlider/wiki/Appearance-Options#wiki-mode) that you can set to `fade` to cross-fade between panels. Also you won’t need to use the FX extension.
If you are stuck using that older version, the set the FX option named `stopRepeat` to `true`. See [this page](https://github.com/CSS-Tricks/AnythingSlider/wiki/FX) on how to set that option. But basically you’ll end up with this code:
.anythingSliderFx({
// target the entire panel and fade will take 500ms
‘.panel’ : [ ‘fade’, ”, 300, ‘easeInCirc’ ]
},{
// FX options
stopRepeat : true
}); -
AuthorPosts
- The forum ‘Other’ is closed to new topics and replies.