Example of thumbnail preview slider implemented by jquery_jquery
The example in this article describes the thumbnail preview slider implemented by jquery. Share it with everyone for your reference. The details are as follows:
The operation effect is as shown below:
The main code is as follows:
(function($) { $.fn.thumbnailSlider = function(options) { var opts = $.extend({}, $.fn.thumbnailSlider.defaults, options); return this.each(function() { var $this = $(this), o = $.meta ? $.extend({}, opts, $pxs_container.data()) : opts; var $ts_container= $this.children('.ts_container'), $ts_thumbnails= $ts_container.children('.ts_thumbnails'), $nav_elems= $ts_container.children('li').not($ts_thumbnails), total_elems= $nav_elems.length, $ts_preview_wrapper= $ts_thumbnails.children('.ts_preview_wrapper'), $arrow= $ts_thumbnails.children('span'), $ts_preview= $ts_preview_wrapper.children('.ts_preview'); /* 计算出$ts_thumbnails的尺寸: width -> width thumbnail + border (2*5) height -> height thumbnail + border + triangle height(6) top-> -(height plus margin of 5) left-> leftDot - 0.5*width + 0.5*widthNavDot 当鼠标经过导航的时候它将会被设定并且默认的值将会赋给导航的第一个预览点 */ var w_ts_thumbnails= o.thumb_width + 2*5, h_ts_thumbnails= o.thumb_height + 2*5 + 6, t_ts_thumbnails= -(h_ts_thumbnails + 5), $first_nav= $nav_elems.eq(0), l_ts_thumbnails= $first_nav.position().left - 0.5*w_ts_thumbnails + 0.5*$first_nav.width(); $ts_thumbnails.css({ width: w_ts_thumbnails + 'px', height: h_ts_thumbnails + 'px', top: t_ts_thumbnails + 'px', left: l_ts_thumbnails + 'px' }); /* 计算出提示箭头的上方和左边的位置 top-> thumb height + border(2*5) left-> (thumb width + border)/2 -width/2 */ var t_arrow= o.thumb_height + 2*5, l_arrow= (o.thumb_width + 2*5) / 2 - $arrow.width() / 2; $arrow.css({ left: l_arrow + 'px', top: t_arrow + 'px' }); /* 计算出$ts_preview的宽度->缩略图的宽度乘以所有缩略图的数量 */ $ts_preview.css('width' , total_elems*o.thumb_width + 'px'); /* 设定 $ts_preview_wrapper 的宽度和高度 -> thumb width / thumb height */ $ts_preview_wrapper.css({ width: o.thumb_width + 'px', height: o.thumb_height + 'px' }); //鼠标经过导航的元素 $nav_elems.bind('mouseenter',function(){ var $nav_elem= $(this), idx= $nav_elem.index(); /* 计算出 $ts_thumbnails 最新的左侧距离 */ var new_left= $nav_elem.position().left - 0.5*w_ts_thumbnails + 0.5*$nav_elem.width(); $ts_thumbnails.stop(true) .show() .animate({ left: new_left + 'px' },o.speed,o.easing); /* 动画从 $ts_preview 的左侧过渡到右边的缩略图 */ $ts_preview.stop(true) .animate({ left: -idx*o.thumb_width + 'px' },o.speed,o.easing); //当鼠标停留的时候图片进行放大 if(o.zoom && o.zoomratio > 1){ var new_width= o.zoomratio * o.thumb_width, new_height= o.zoomratio * o.thumb_height; //增加 $ts_preview 的宽度为了能够让图片放大 var ts_preview_w= $ts_preview.width(); $ts_preview.css('width' , (ts_preview_w - o.thumb_width + new_width) + 'px'); $ts_preview.children().eq(idx).find('img').stop().animate({ width: new_width + 'px', height: new_height + 'px' },o.zoomspeed); } }).bind('mouseleave',function(){ //如果放大了设置它的宽度和高度为默认值 if(o.zoom && o.zoomratio > 1){ var $nav_elem= $(this), idx= $nav_elem.index(); $ts_preview.children().eq(idx).find('img').stop().css({ width: o.thumb_width + 'px', height: o.thumb_height + 'px' }); } $ts_thumbnails.stop(true) .hide(); }).bind('click',function(){ var $nav_elem= $(this), idx= $nav_elem.index(); o.onClick(idx); }); }); }; $.fn.thumbnailSlider.defaults = { speed: 100,// 幻灯片过渡的动画速度 easing: 'jswing',// easing动画效果 thumb_width: 75,//您的图片宽度 thumb_height: 75,//您的图片高度 zoom: false,//缩略图是否放大 zoomratio: 1.3,// 放大比率(数值必须大于1) zoomspeed: 15000,//放大动画的速度 onClick: function(){return false;}//点击回发 }; })(jQuery);
Click here for the complete example codeDownload from this site.
I hope this article will be helpful to everyone’s jQuery programming.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



This article will introduce how to turn off the thumbnail function displayed when the mouse moves the taskbar icon in Win11 system. This feature is turned on by default and displays a thumbnail of the application's current window when the user hovers the mouse pointer over an application icon on the taskbar. However, some users may find this feature less useful or disruptive to their experience and want to turn it off. Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another drawback is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. but

1. First enter Visual Studio Code and click [File] in the upper left corner. 2. Then click [Preferences]. 3. Click the [Settings] item. 4. Then click [Text Editor-Thumbnail]. 5. Finally, in the thumbnail item, turn on [Control whether to display thumbnails].

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute
