- Posts: 3
- Thank you received: 0
the big image doesn't works
-
taj
Inactive member - Topic Author
- New Member
Less
More
13 years 4 weeks ago #13124
by taj
the big image doesn't works was created by taj
the thumbnails are came but the big images only one is coming all others are not come why?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 4 weeks ago #13134
by ivan.milic
Replied by ivan.milic on topic Re: the big image doesn't works
Link please...
Please Log in to join the conversation.
-
taj
Inactive member - Topic Author
- New Member
Less
More
- Posts: 3
- Thank you received: 0
-
taj
Inactive member - Topic Author
- New Member
Less
More
- Posts: 3
- Thank you received: 0
13 years 4 weeks ago #13139
by taj
Replied by taj on topic Re: the big image doesn't works
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 4 weeks ago #13141
by ivan.milic
Replied by ivan.milic on topic Re: the big image doesn't works
Image container that is sliding is moving in wrong direction, for example it moves to left: -1000px and it should be left:1000px , have you made some changes in module files?
try this:
open :
adodis.in/ibrahim/friends/modules/mod_ho...js/slideViewerPro.js
and find this:
replace
var cnt = -(pictWidth*z);
with:
var cnt = (pictWidth*z);
try this:
open :
adodis.in/ibrahim/friends/modules/mod_ho...js/slideViewerPro.js
and find this:
Code:
jQuery("div#thumbSlider" + j + " a").each(function(z) {
jQuery(this).bind("click", function(){
jQuery(this).find("p.tmbrdr").css({borderColor: settings.thumbsActiveBorderColor, opacity: settings.thumbsActiveBorderOpacity});
jQuery(this).parent().parent().find("p.tmbrdr").not(jQuery(this).find("p.tmbrdr")).css({borderColor: settings.thumbsBorderColor, opacity: settings.thumbsBorderOpacity});
var cnt = -(pictWidth*z);
(cnt != container.find("ul").css("left").replace(/px/, "")) ? container.find("span.typo").animate({"opacity": 0}, 250) : null ;
container.find("ul").animate({ left: cnt}, settings.easeTime, settings.easeFunc, function(){container.find("span.typo").animate({"opacity": settings.typoFullOpacity}, 250)});
return false;
});
});
replace
var cnt = -(pictWidth*z);
with:
var cnt = (pictWidth*z);
Please Log in to join the conversation.
Time to create page: 0.171 seconds