What happened to hoverPause? :( Is there any way I can reproduce this? That was kind of key.(Don't get me wrong - this is easily the best jQuery slider)
What happened to hoverPause? :( Is there any way I can reproduce this? That was kind of key.
(Don't get me wrong - this is easily the best jQuery slider)
On Friday, March 8, 2013 6:03:02 PM UTC-6, Nathan Searles wrote:
--
You received this message because you are subscribed to the Google Groups "SlidesJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to slidesjs+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Hover pause has been added! http://slidesjs.com/examples/playing/Check out the play options at http://slidesjs.com/
On Monday, March 11, 2013 7:49:50 PM UTC-7, Andrew Weber wrote:Ah yes, good idea. I used a timeout to make sure it didn't trigger the play button over and over again. Also wanted to wait a couple seconds so that it didn't immediately move to the next slide after. Here was my final code.var sliderTimer;$('#slideshow').on('mouseenter', function(e) {clearTimeout(sliderTimer);$('.slidesjs-stop').trigger('click');}).on('mouseleave', function(e) {clearTimeout(sliderTimer);sliderTimer = setTimeout(function () {$('.slidesjs-play').trigger('click');}, 2000);});
On Monday, March 11, 2013 2:22:20 PM UTC-5, Nathan Searles wrote:Hey thanks for the feedback. I'll look into adding that into the new version. For now it'd be pretty easy to do this with a little mouse enter/leave and a trigger click on the play/pause button.
On Saturday, March 9, 2013 1:02:39 PM UTC-8, Andrew Weber wrote:What happened to hoverPause? :( Is there any way I can reproduce this? That was kind of key.(Don't get me wrong - this is easily the best jQuery slider)
Just a note to anyone wanting to use their own pagination with the current version, it‘s pretty easy to get this working. This assumes all your slides are inside of a div with class ’slide'.
Here's a solution:
html
<ul id='slide-controls' class='cf'></ul>
slidejs
pagination: {active:true}
css
.slidesjs-pagination
{
display:none;
}
custom js
$('.slide').each(function()
{
$('#slide-controls').append('<li></li>');
});
$('#slide-controls li').each(function(index , item)
{
$(item).on('click' , function()
{
$('.slidesjs-pagination li a').eq(index).trigger('click');
})
});
The package could not be installed. No valid plugins were found.
Plugin install failed.
Please advise.
Thank you!
Sheen
Currently there isn't any public methods only because it become problematic and a block to completing SlidesJS 3. Public Methods may be added in the feature if I can figure out a solution that dosen't cause other issues.
On Wednesday, March 20, 2013 10:16:33 AM UTC-7, David Streever wrote:Darren, Lukas, apparently, we can use the goto method, but I can't find documentation on that. Christophe very helpfully gave me code which I've pasted below. Unfortuantely, I can't figure out how to implement it :( any ideas?at the end of the plugin code just replace this:return $.fn[pluginName] = function (options) {return this.each(function () {if (!$.data(this, "plugin_" + pluginName)) {return $.data(this, "plugin_" + pluginName, new Plugin(this, options));}});};with this:return $.fn[pluginName] = function (options) {if (typeof options === "string") {var args = Array.prototype.slice.call(arguments, 1);this.each(function () {var plugin = $.data(this, 'plugin_' + pluginName);plugin[options].apply(plugin, args);});}else {return this.each(function () {if (!$.data(this, 'plugin_' + pluginName)) {$.data(this, 'plugin_' + pluginName,new Plugin(this, options));}});}};now you can call the goto method directly with an argument (slide number as integer), eg.$("#slideshow").slidesjs("goto", intValue);On Tue, Mar 19, 2013 at 11:04 PM, Darren Wood <dar...@thefold.co.nz> wrote:
Hi,Thanks for the great work on this script. In the older version it was very simple to include thumbnail pagination (like the Product example in the old version). How can I achieve this with the new version?Thanks!D
On Saturday, March 9, 2013 1:03:02 PM UTC+13, Nathan Searles wrote:Hey y'all,Thanks to everyone that helped test the SlidesJS beta!SlidesJS 3 has been released and is available at http://slidesjs.com/.Cheers!
--
You received this message because you are subscribed to the Google Groups "SlidesJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to slidesjs+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
David Streever
Web DevelopmentCycling & Community
What it does is get the aspect ratio from the width and height. It was the simplest solution for setting the height based on what the width is. Because things need to be positioned absolute to make the slideshow work the elements then lose their height which in turn needs to be set using CSS.When changing the browser size SlidesJS gets the new width and sets the correct height based on the aspect ratio and new width.So for fluid layout just get the actual width and height of your images or width and height of your slide content and use that and SlidesJS will take care of the rest.
On Monday, March 11, 2013 6:30:50 PM UTC-7, Jules Mazur wrote:Why is defining width mandatory now? My site has a fluid layout, do the `width` and `height` options accept percent, or just px?
I do have the problem, that I added some vimeo videos with Iframe
But if I switch between the videos they won't stop and continue to play there sound in the background.
I want to know where I have to modify the code to get this fixed.
Thanks for your help
You can see the problem here
Hi all,
Please help me. While i am using the autoplay and then click on image, the autoplay is stop and navigation also not working in IE 10. the other browsers are working fine. Thanks.Please help me.
On Thursday, July 25, 2013 4:12:29 AM UTC+8, Jochem Geerdink wrote:I just checked this page in IE10:
http://slidesjs.com/examples/playing/
It worked fine for me.
What issue are you seeing?
On Saturday, July 20, 2013 3:51:11 AM UTC-7, vasanth kumar wrote:Hi,
The latest version of SlidesJS is not working in IE 10. Can any one help me..
Thanks in advance..!