khaja sayyed

Greenhorn
+ Follow
since Jan 24, 2013
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by khaja sayyed

Hello friends...

This is my image sliding script... i want to change the slide effect... can any body please help me... please...

[code]
<script type="text/javascript">
// initialize slideshow (Cycle)
jQuery(document).ready(function($) {
if ($('#Slides').length > 0) {
$('#Slides').cycle({
fx: 'fade',
speed: 750,
timeout: 4000,
randomizeEffects: false,
easing: 'easeOutCubic',
next: '.slideNext',
prev: '.slidePrev',
pager: '#SlidePager',
before: function() {
// reset the overlay for the next slide
jQuery('#SlideShow').css('cursor','default').unbind('click'); },
after: function() {
// get the link and apply it to the overlay
var theLink = jQuery(this);
var linkURL = (theLink) ? theLink.attr('href') : false;
if (linkURL) {
jQuery('#SlideShow').css('cursor','pointer').click( function() {
document.location.href = linkURL;
});
}
}
});
}
});
</script>
[code]
11 years ago