jQuery thumbnail scroller
A thumbnail/image scroller that can be used as standalone or alongside lightboxes, gallery scripts etc. Features include: scrolling by cursor movement, buttons and/or touch, vertical and/or horizontal scrolling, customization via CSS and option parameters, methods for triggering events like scroll-to, update, destroy etc., user-defined callbacks functions and more.
Current version 2.0.3 (Changelog) – Version 1.x.x (no longer actively maintained)
How to use it
HTML
Get plugin files. Extract and upload jquery.mThumbnailScroller.min.js and jquery.mThumbnailScroller.css to your web server (more info)
Include jquery.mThumbnailScroller.css in the head tag your html document
<link rel="stylesheet" href="/path/to/jquery.mThumbnailScroller.css">
Include jQuery library (if your project doesn’t use it already) and jquery.mThumbnailScroller.min.js in your document’s head or body tag
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/path/to/jquery.mThumbnailScroller.min.js"></script>
Create the markup with your images, links, etc. which is basically an element (e.g. a div) holding an unordered list (ul)
<div id="my-thumbs-list"> <ul> <li><a href="image-1-link"><img src="/path/to/image-1-file" /></a></li> <li><a href="image-2-link"><img src="/path/to/image-2-file" /></a></li> <li><a href="image-3-link"><img src="/path/to/image-3-file" /></a></li> <li><a href="image-4-link"><img src="/path/to/image-4-file" /></a></li> <!-- and so on... --> </ul> </div>
CSS
Give your element (in the example above #my-thumbs-list) a width and/or height value and a CSS overflow value of auto or hidden. For example:
#my-thumbs-list{ overflow: auto; width: 800px; height: auto; }
If you’re creating a vertical scroller, you’ll need to set a height (or max-height) value
#my-thumbs-list{ overflow: auto; width: 300px; height: 500px; }
Initialization
Initialize via javascript
Create a script and call mThumbnailScroller function on your element selector along with the option parameters you want
<script> (function($){ $(window).load(function(){ $("#my-thumbs-list").mThumbnailScroller({ axis:"x" //change to "y" for vertical scroller }); }); })(jQuery); </script>
Initialize via HTML
If you prefer to initialize the plugin without a script, you can simply give your element the class mThumbnailScroller
and optionally set its orientation via the HTML data attribute data-mts-axis
("x"
for horizontal and "y"
for vertical). For example:
<div id="my-thumbs-list" class="mThumbnailScroller" data-mts-axis="x"> <ul> <!-- your content --> </ul> </div>
Basic configuration & option parameters
The 2 basic options are axis
which defines the scroller orientation and type
which defines how the user interacts with the scroller.
axis
The default scroller orientation is horizontal, so if you don’t set an axis
option value, it defaults to "x"
$("#my-thumbs-list").mThumbnailScroller({ axis:"x" });
To create a vertical scroller, set axis
option to "y"
$("#my-thumbs-list").mThumbnailScroller({ axis:"y" });
or use data-mts-axis="y"
if you’re initializing the plugin via HTML
type
You can set the type of scroller via javascript, for example:
$("#my-thumbs-list").mThumbnailScroller({ type:"hover-50" });
or using the HTML data attribute data-mts-type
, e.g.:
<div class="mThumbnailScroller" data-mts-type="hover-50">...</div>
There are 4 basic scroller types:
"hover-[number]"
(e.g."hover-33"
,"hover-80"
etc.)Scrolling content in linear mode by hovering the cursor over the scroller edges. The edges are defined by the type name, where [number] indicates the percentage of the scroller area in which scrolling is idle. For example, setting
"hover-50"
(default value) on a 600 pixels wide horizontal scroller, means that scrolling will be triggered only when the cursor is over the first 150 pixels from the left or right edge. And when cursor is over the 50% of the scroller width (300 pixels), scrolling will be idle or stopped.hover-precise
Scrolling content with animation easing (non-linear mode) by hovering the cursor over the scroller. The scrolling speed and direction is directly affected by the cursor movement and position within the scroller.
"click-[number]"
(e.g."click-50"
,"click-90"
etc.)Scrolling content by clicking buttons. The scrolling amount is defined by type name, where [number] indicates a percentage of the scroller area. For example, setting
"click-50"
on a 800 pixels wide horizontal scroller, means that each time you click the left or right arrow buttons, the content will scroll by 400 pixels (50% of 800px) to the left or right.click-thumb
Scrolling each image/thumbnail at a time by clicking buttons.
"hover-[number]"
and hover-precise
types become disabled on touch-enabled devices and replaced by content touch-swipe scrolling.
Configuration
You can configure your scroller(s) using the following option parameters when calling mThumbnailScroller function
Usage $(selector).mThumbnailScroller({ option: value });
setWidth: false
- Set the width of the scroller (overwrites CSS width), value in pixels (integer) or percentage (string).
setHeight: false
- Set the height of the scroller (overwrites CSS height), value in pixels (integer) or percentage (string).
setTop: 0
- Set the initial css top property of content, accepts string values (css top position).
Example:setTop: "-100px"
.
setLeft: 0
- Set the initial css left property of content, accepts string values (css left position).
Example:setLeft: "-100px"
.
type: "string"
- Scroller type defines the way users interact with the scroller.
Available values:"hover-[number]"
(e.g."hover-50"
)
Scrolling content in linear mode by hovering the cursor over the scroller edges. The edges are defined by the type name, where [number] indicates the percentage of the scroller area in which scrolling is idle. Scrolling accelerates proportionally according to cursor position: e.g. scrolling speed increases as the cursor moves towards the edges and decreases as it moves towards the center of the scroller area."hover-precise"
Scrolling content with animation easing (non-linear mode) by hovering the cursor over the scroller. The scrolling speed and direction is directly affected by the cursor movement and position within the scroller.click-[number]
(e.g."click-80"
)
Scrolling content by clicking buttons. The scrolling amount is defined by type name, where [number] indicates a percentage of the scroller area."click-thumb"
Scrolling each image/thumbnail at a time by clicking buttons. Each click will scroll the content by the width/height of the next non-visible adjusted image.
axis: "string"
- Define scroller axis (scrolling orientation).
Available values:"y"
,"x"
,"yx"
.axis: "y"
– vertical scrolleraxis: "x"
– horizontal scroller (default)axis: "yx"
– vertical and horizontal scroller (useful when panning images or switching axis on-the-fly)
speed: integer
- Set the scrolling speed (higher=faster). Default value is
15
.
contentTouchScroll: integer
- Enable or disable content touch-swipe scrolling for touch-enabled devices.
To completely disable, setcontentTouchScroll: false
. Integer values define the axis-specific minimum amount required for scrolling momentum (default value is25
).
markup:{ thumbnailsContainer: "string" }
- Set the element containing your thumbnails. By default, this is an unordered list (
ul
).
markup:{ thumbnailContainer: "string" }
- Set the element containing each thumbnail. By default this is a list-item (
li
).
markup:{ thumbnailElement: "string" }
- Set the actual thumbnail element. By default, this is an image tag (
img
).
advanced:{ autoExpandHorizontalScroll: boolean }
- Auto-expand content horizontally (for
"x"
or"yx"
axis).
If set totrue
(default), content will expand horizontally to accomodate any floated/inline-block elements (such asli
,a
,img
etc.).
advanced:{ updateOnContentResize: boolean }
- Update scroller(s) automatically on content, element or viewport resize. The value should be
true
(default) for fluid layouts/elements, adding/removing content dynamically, hiding/showing elements etc.
advanced:{ updateOnImageLoad: boolean }
- Update scroller(s) automatically each time an image inside the element is fully loaded. The value is
true
by default.
advanced:{ updateOnSelectorChange: "string" }
- Update scroller(s) automatically when the amount and size of specific selectors changes.
Useful when you need to update the scroller(s) automatically, each time a type of element is added, removed or changes its size.
For example, settingupdateOnSelectorChange: "ul li"
will update the scroller each time list-items inside the element are changed. Setting the value totrue
, will update the scroller each time any element is changed. To disable (default) set tofalse
.
theme: "string"
- Set a ready-to-use scroller theme (plugin’s CSS contains all themes).
callbacks:{ onInit: function(){} }
- A function/custom code to execute when the scroller has initialized (callbacks demo).
Example:
callbacks:{ onInit:function(){ console.log("scroller initialized"); } }
callbacks:{ onScrollStart: function(){} }
- A function/custom code to execute when scrolling starts (callbacks demo).
Example:
callbacks:{ onScrollStart:function(){ console.log("scroll started"); } }
callbacks:{ onScroll: function(){} }
- A function/custom code to execute when scrolling is completed (callbacks demo).
Example:
callbacks:{ onScroll:function(){ console.log("scroll completed"); } }
callbacks:{ onTotalScroll: function(){} }
- A function/custom code to execute when scrolling is completed and content is scrolled all the way to the end (bottom and/or right) (callbacks demo).
Example:
callbacks:{ onTotalScroll:function(){ console.log("Scrolled to 100%"); } }
callbacks:{ onTotalScrollBack: function(){} }
- A function/custom code to execute when scrolling is completed and content is scrolled back to the beginning (top and/or left) (callbacks demo).
Example:
callbacks:{ onTotalScrollBack:function(){ console.log("Scrolled back to 0%"); } }
callbacks:{ onTotalScrollOffset: integer }
- Set an offset for the onTotalScroll callback option.
For example, settingonTotalScrollOffset: 100
will trigger the onTotalScroll callback 100 pixels before the end of scrolling is reached.
callbacks:{ onTotalScrollBackOffset: integer }
- Set an offset for the onTotalScrollBack callback option.
For example, settingonTotalScrollBackOffset: 100
will trigger the onTotalScrollBack callback 100 pixels before the beginning of scrolling is reached.
callbacks:{ whileScrolling: function(){} }
- A function/custom code to execute while scrolling is active (callbacks demo).
Example:
callbacks:{ whileScrolling:function(){ console.log("scrolling..."); } }
callbacks:{ alwaysTriggerOffsets: boolean }
- Control the way onTotalScroll and onTotalScrollBack offsets execute.
By default, callback offsets will trigger repeatedly while content is scrolling within the offsets.
SetalwaysTriggerOffsets: false
when you need to trigger onTotalScroll and onTotalScrollBack callbacks only once.
live: boolean, "string"
- Enable or disable the creation of scroller(s) on all elements matching the current selector, now and in the future.
Setlive: true
when you need to add scroller(s) on elements that do not yet exist in the page. These could be elements added by other scripts or plugins after some action by the user.
If you need at any time to disable or enable the live option, setlive: "off"
and"on"
respectively.
You can also tell the script to disable live option after the first invocation by settinglive: "once"
.
liveSelector: "string"
- Set the matching set of elements to apply a scroller, now and in the future.
Plugin methods
Methods are ways to execute various scroller actions programmatically from within your script(s).
update
Usage $(selector).mThumbnailScroller("update");
Call the update method to manually update existing scrollers to accomodate new content or resized element(s). This method is by default called automatically by the script (via updateOnContentResize
option) when the element itself and/or its content size changes.
scrollTo
Usage $(selector).mThumbnailScroller("scrollTo", position, {options});
Call the scrollTo method to scroll content to the position parameter. Position parameter can be a string (e.g. "#element-id"
, "bottom"
, "left"
etc.), an integer indicating number of pixels (e.g. 100
), an array for y/x axis (e.g. [100,100]
), a js/jQuery object, a function etc. method demo
scrollTo position parameter
Position parameter can be:
"string"
- Element selector
For example, scroll to element with id “element-id”:
$(selector).mThumbnailScroller("scrollTo","#element-id");
- Special pre-defined position
For example, scroll to right:
$(selector).mThumbnailScroller("scrollTo","right");
Pre-defined position strings:
"bottom"
– scroll to bottom"top"
– scroll to top"right"
– scroll to right"left"
– scroll to left"first"
– scroll to the position of the first element within content"last"
– scroll to the position of the last element within content
- Number of pixels less/more: (e.g.
"-=100"
/"+=100"
)
For example, scroll by 100 pixels right:
$(selector).mThumbnailScroller("scrollTo","-=100");
- Element selector
integer
- Number of pixels (from left and/or top)
For example, scroll to 100 pixels:
$(selector).mThumbnailScroller("scrollTo",100);
- Number of pixels (from left and/or top)
[array]
- Different y/x position
For example, scroll to 100 pixels from top and 50 pixels from left:
$(selector).mThumbnailScroller("scrollTo",[100,50]);
- Different y/x position
object/function
- jQuery object
For example, scroll to element with id “element-id”:
$(selector).mThumbnailScroller("scrollTo",$("#element-id"));
- js object
For example, scroll to element with id “element-id”:
$(selector).mThumbnailScroller("scrollTo",document.getelementbyid("element-id"));
- function
For example, scroll to 100 pixels:
$(selector).mThumbnailScroller("scrollTo",function(){ return 100 });
- jQuery object
scrollTo method options
speed: integer
- Scrolling speed.
Example:
$(selector).mThumbnailScroller("scrollTo", "-=200", { speed: 30 });
duration: integer
- Scrolling animation duration, value in milliseconds.
Example:
$(selector).mThumbnailScroller("scrollTo", "right", { duration: 1000 });
easing: "string"
- Scrolling animation easing, values:
"easeInOut"
"easeOut"
"easeInOutSmooth"
"easeOutSmooth"
"easeInOutStrong"
"easeOutStrong"
"easeInOut"
"easeInOut"
Example:
$(selector).mThumbnailScroller("scrollTo", 300, { easing: "easeOutSmooth" });
callbacks: boolean
- Trigger user defined callbacks after scroll-to event is completed, values:
true
,false
.
Example:
$(selector).mThumbnailScroller("scrollTo", "top", { callbacks: false });
timeout: integer
- Method timeout (delay). The default timeout is 60 (milliseconds) in order to work with automatic scroller update functionality, value in milliseconds.
Example:
$(selector).mThumbnailScroller("scrollTo", "last", { timeout: 0 //no timeout });
stop
Usage $(selector).mThumbnailScroller("stop");
Stops running scrolling animations. Usefull when you wish to interrupt a previously scrollTo call.
disable
Usage $(selector).mThumbnailScroller("disable");
Calling disable method will temporarily disable the scroller(s). Disabled scrollers can be re-enabled by calling the update method.
To disable a scroller and reset its content position, call the method by setting its reset parameter to true
:
$(selector).mThumbnailScroller("disable", true);
destroy
Usage $(selector).mThumbnailScroller("destroy");
Calling destroy method will completely remove the scroller and return the element to its original state.
Scroller styling & themes
You can style your scroller(s) using jquery.mThumbnailScroller.css which contains the basic/default styling and few ready-to-use themes.
You can modify the default styling or an existing scroller theme directly, clone a theme and change it to your needs or overwrite the CSS in another stylesheet. If you wish to maintain compatibility with future plugin versions (that may include an updated version of jquery.mThumbnailScroller.css), I recommend using your own custom (or cloned) theme (creating your own custom theme), or overwriting the CSS. This way you can always upgrade jquery.mThumbnailScroller.css without having to redo your changes.
Themes
Plugin’s CSS includes a number of ready-to-use themes for quickly applying a basic styling to your scroller(s). To apply a theme, use theme
option parameter:
$(selector).mThumbnailScroller({ theme: "theme-name" });
or the HTML data attribute data-mts-theme
in your markup:
<div class="mThumbnailScroller" data-mts-theme="theme-name">...</div>
creating your own custom theme
User-defined callbacks
You can trigger your own js function(s) by using plugin’s callbacks option parameter (see all availbale callbacks in configuration section). Some examples:
$(selector).mThumbnailScroller({ callbacks:{ onScroll: function(){ /* do something */ } } });
$(selector).mThumbnailScroller({ callbacks:{ onTotalScroll: function(){ myFunction(); } } }); function myFunction(){ /* do something */ }
The plugin returns a number of values and objects that can be used inside the callbacks
this
– the scroller elementthis.mts.content
– the scrollable element containing the content (e.g. theul
element) as jquery objectthis.mts.top
– content’s top position (pixels)this.mts.left
– content’s left position (pixels)this.mts.topPct
– content vertical scrolling percentagethis.mts.leftPct
– content horizontal scrolling percentagethis.mts.direction
– content’s scrolling direction (returns"x"
or"y"
)
Plugin dependencies & requirements
- jQuery version 1.6.0 or higher
License
This work is released under the MIT License.
You are free to use, study, improve and modify it wherever and however you like.
https://opensource.org/licenses/MIT
Donating helps greatly in developing and updating free software and running this blog 🙂
Thanks for the script
do i need to delete some code?
having a problem with the script..
It loads and works fine.. however some of my other scripts stop working.. (Prettyphoto)
Wondering if there is a way to get them to work together?
hi.
I find this plugin very good, and started some test to implement it on my web site.
My thumbnails are all in same size (i.e 80×105).
Im using the scroller with “clickButtons” type.
Initial state is that i show 3 of them side by side inside a . and it looks good (same margings both sides..
When I click the NEXT buttom few times, and thumbnails are scrolling, after a few scrolls to the same direction i lose the position of the thumbnails, i.e. i see “half” of thumb in the left, and half of thumb in right.
My problem/question is:
How you can controll the x-axis px movement amount ?
ty
Hi Malihu and thanks for your great plugin(s)!
I’m trying to use jquery thumbnail scroller from inside a tab switcher. All is well when the tab containing the scroller is visible on page load; but if the page opens on another tab, since visibility is 0, jquery thumbnail scroller initializes with a height of 0.
I believe I would need to issue a re-initialize command to the jquery thumbnail scroller when its tab is shown. Is there a simple way to do that? (see http://elricoshow.com)
Thanks!
Thanks..
Hi,
The thumbnail scroller works great on Firefox and chrome. But not in IE. When I hover over the images, instead of scrolling the whole div “jtscroller” shifts all the way out. Looking at the html in developer tools, everytime I hover the inline style “left” is a huge negative number.
How do I fix this? I was able implement it without any issues in other browsers.
Thanks
Aruna
Exactly what i was looking for. Thanks for sharing this info.
Hi there! Can it be that the demo’s are no longer functional?
Thanks for the script! Very good.
HI, nice script so I have ui-1.10.1 for my website and not able to use this? is it my mistake or script is not fit for that version of jquery? is there anybody who knows? many thanks
Hi, thanks its really a great script!
Is it possible to set the cklick buttons (arrows) outside the pictures. So that they appear left and right next to the pictures instead at top of the pictures?
For this i think the tags have to be outside of the “jTscrollerContainer” div but then the js has to be changed:
var $scrollerNextButton=$this.children(".jTscrollerNextButton"); var $scrollerPrevButton=$this.children(".jTscrollerPrevButton");
because then the buttons aren’t children anymore …
but i don’t know how to do this.
thanks for your help
There is a problem with web kit based browsers, not fully load the thumbnails, to update and loaded all updates again if not fully charged. This sucks. do not fix it since 2011.
Existe un problema con navegadores basados en web kit, no carga completamente las miniaturas, al actualizar cargan todas y si nuevamente se actualiza no carga completa. Esto apesta. no arreglan esto desde el 2011.
Your plugin is great! I wanted you to know that I believe someone has been selling you plugin as there own. http://codecanyon.net/item/thumbnail-scroller-wordpress-plugin/2068683
I just wanted to help you protect what is yours.
I had to modify it somewhat to allow the use of external elements as controls. The external elements of choice can now be set in the initial call.
Oringinal
var defaults={ //default options scrollerType:"hoverPrecise", //values: "hoverPrecise", "hoverAccelerate", "clickButtons" scrollerOrientation:"horizontal", //values: "horizontal", "vertical" scrollEasing:"easeOutCirc", //easing type scrollEasingAmount:800, //value: milliseconds acceleration:2, //value: integer scrollSpeed:600, //value: milliseconds noScrollCenterSpace:0, //value: pixels autoScrolling:0, //value: integer autoScrollingSpeed:8000, //value: milliseconds autoScrollingEasing:"easeInOutQuad", //easing type autoScrollingDelay:2500 //value: milliseconds }; var options=$.extend(defaults,options); return this.each(function(){ //cache vars var $this=$(this); var $scrollerContainer=$this.children(".jTscrollerContainer"); var $scroller=$this.children(".jTscrollerContainer").children(".jTscroller"); var $scrollerNextButton=$this.children(".jTscrollerNextButton"); - var $scrollerPrevButton=$this.children(".jTscrollerPrevButton");
Changed to
var defaults={ //default options scrollerType:"hoverPrecise", //values: "hoverPrecise", "hoverAccelerate", "clickButtons" scrollerOrientation:"horizontal", //values: "horizontal", "vertical" scrollEasing:"easeOutCirc", //easing type scrollEasingAmount:800, //value: milliseconds acceleration:2, //value: integer scrollSpeed:600, //value: milliseconds noScrollCenterSpace:0, //value: pixels autoScrolling:0, //value: integer autoScrollingSpeed:8000, //value: milliseconds autoScrollingEasing:"easeInOutQuad", //easing type autoScrollingDelay:2500, //value: milliseconds nextButton:'#next', prevButton:'#prev', }; var options=$.extend(defaults,options); return this.each(function(){ //cache vars var $this=$(this); var $scrollerContainer=$this.children(".jTscrollerContainer"); var $scroller=$this.children(".jTscrollerContainer").children(".jTscroller"); var $scrollerNextButton=$(options.nextButton); var $scrollerPrevButton=$(options.prevButton);
Great plugin!
Hoping you might have a solution for touch screens…??
Right now I’m developing version 2.0 of the plugin which will support touch-devices via touch-swipe scrolling (for iOS, Android, Microsoft tablets etc.).
Hi there.
I did love this scroller until I found an awful bug. When you use the browser zoom, it totally breaks. Is there a way around this?
This happens on webkit browsers (known issue). I’ll fix it on the next plugin version.
What browser does it break in? What do you mean by break? Does it work if you reload. I can’t duplicate it. I tried in IOS (double tap) and it was fine. Are you talking about the command + zooming?
Thanks!
Hi, I appreciate your work. It is very useful.
But one thing I would suggest is: is it possible to make a scroller work if we change the width of jScrollerController in runtime? It is more flexible. I.e. developers can add more photos, or remove them as they like.
Hi and thanks a lot for the feedback!
Next version will have many features regarding dynamic elements, such as adding/removing images and scrollers on-the-fly. I’m planning on making this plugin extremely flexible with user defined option parameters for each feature, callback functions, scroll-to method, thumbnail titles & descriptions etc.
I’ll also make it really easy to implement by making all plugin markup generate automatically.
At the moment I’m upgrading few image galleries (which is very time consuming) so I’ll probably publish the new version in 3 or 4 weeks.
Hi Malihu,
Great plugin by the way. Tell me, will the upgraded plugin be responsive too? I’m finding that my websites plugins are needing to be upgraded making way for more and more tablet and smartphone usage. (responsive, touch, swipe etc)
Next version will fully support touch devices.
Do you have an updated ETA for the new version?
Early May (in about 2 weeks).
Hi,
I have 60 images and was wondering what controls the width of the scroll on the “on click” version.
For instance if I set the width to 1022 px, does the scroller scroll 1022 px when I click the next button?
By the way, excellent job on this!
Yes, the scroll amount is the scroller’s visible width.
We are looking forward to use your thumbnals-scroller plugin in JSF (JavaServer Faces). This is exactly what I need currently, but we need a new version (you mentioned in the last post) as soon as possible. Please post here a link when it’s finished. Thanks.
I’ll try to include and publish at least the basic upgrades & features (better scrolling functions, touch support, dynamic elements etc.) as soon as possible.
Basic functionality is fine.
One question yet. Can images be loaded lazy? We have thumbnails which are loaded from a backend system dynamically. The loading takes some time. I would like to show placeholders first and load images when they are coming into the view (visible area). That mean, they will be loaded when scrolling. Is it possible with your plugin?
Thanks for your effort! Looking forward.
I think you would need to give images a fixed width/height and call thumbnailScroller function on document ready (instead of window load). I’ll try to implement an automatic way of lazy-loading images on the next version.
i have error in chrome and safari. when i resized the window only works in firefox and explorer… i read some fix in this page but. not resolve my problem.??? you can view this bug in the demo (this page) resized and view the error.. (chrome)… some fix for this? help
on hoverAccelerate
I’ll try to update the script with an updated hoverAccelerate function within the next week. Thanks for the feedback.
Thanks Malihu! your are great bro!
you can tellme when you finish? Reply this or sendme a email =).. or only update in the page, i still monitoring…. happy holidays y new year
I’m reading almost every comment before I finish a new plugin version in order to include users requests etc., so I’ll probably also reply here when done.
Happy holidays 🙂
Awesome script! Thank you!
I was wondering if I wanted to hide the container of jThumbnailScroller, how do I make the script work when the container is hidden? Right now I’m hiding the container after setting scroller options inside window.onload function.
If I try to hide the container before the thumnailScroller function, it doesn’t work properly,
Thanks!
I love these plugins. Well done Malihu. And thank you!
Just a quick question on the thumbnail scroller…. you mentioned on a previous reply back in July (2012) that the next iteration of the plugin should support touchscreen “swipe” – i.e. to enable the thumbnail scroller to work by users swiping the gallery.
Do you have an idea when the next iteration may be released….?
I have had a play with your full-screen gallery (with thumbnails) and added an automated “timed slideshow” element to the script so when someone presses “play” it hides everything but the fullscreen picture and the “play/pause” button… works very well actually!
The icing on the cake would be getting the thumbnail scroller to work on touchscreens… this would be one hell of a fullscreen gallery if we could get this working! All thanks to you!
Regards,
Chris
Hi Chris and thanks for your comments 🙂
If everything goes well, next version will be released within January. I’m currently finishing a big update on the fullscreen image gallery that’ll have the touch-swipe support. I’ll publish the gallery update very soon (within the next couple of days).
You can take a sneak-peek of the scroller here (please note that this link is beta and will probably change as I’m testing all kinds of stuff there).
Hi, is it possible to join a lightbox?
The scroller plugin is great. However, it does not work with twitter bootstrap modal window. Any suggestion in tweaking css to make it work?
Hi, this plugin is amazing!
I want to use it in my WordPress website, but when I put
into
sorry,it’s this script into :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> into<head></head>
Hello,
A really good and stylish plugin, good work.
I use the plugin for text and I would like to know how I can get the height to be dynamic.
Right now, the height must be specified in pixels, is there any quick fix to make it to be auto.
Regards
Hi,
I’d like to see an update which works with the most recent version of Jquery.
Thanks!
Hello,
I’ve tested the script with jquery 1.8 and it does work. Which version of jQuery and jQuery UI are you using?
Me too!
I’m developing a website for a friend and found this amazing plugin. But I’m not able to get it autoscrolling. If possible, I’d like to have both features, autoscroll and mouse action. Does anybody have a suggestion?
This works great, I have a lot of pictures Im trying to slide through but the scroller will show half of the next one and then when I click the next button it only shows the other half of that picture, is there any way I can tell it how many pixels for each section (each section you see till you say next)?