缩放图像滑块

时间:2012-04-03 10:42:38

标签: jquery slider image-zoom

我想在rails 3.1应用程序中获取缩放滑块。有没有可用的演示

Similer到这个链接?

Zoom Slider

2 个答案:

答案 0 :(得分:1)

Hiya 演示http://jsfiddle.net/DV5GU/

我借用你给出的链接中的图片:P

此处还有一些有用的想法:http://jsfiddle.net/jfriend00/eW53L/ & 此处:http://jsfiddle.net/vcw8c/

Jquery代码

 $(document).ready(function(){
       $('#image1').width(200);
       $('#image1').mouseover(function()
       {
          $(this).css("cursor","pointer");
          $(this).animate({width: "300px"}, 'slow');
       });

    $('#image1').mouseout(function()
      {   
          $(this).animate({width: "200px"}, 'slow');
       });
   });​

答案 1 :(得分:1)

要缩放图片,请尝试链接Zoom image