0

我需要将图像拆分为用户可以悬停或单击的方形图块。

我应该使用纯 css 还是必须使用 jquery?你有这样做的jQuery插件的例子吗?(我找到了这个,但会对其他建议感兴趣)

谢谢你的帮助。

4

1 回答 1

2

那个插件有点老了,我建议你使用这个,改编自另一个插件

演示:http: //jsfiddle.net/elclanrs/HmpGx/

;(function( $, window ) {

  var _defaults = { x: 3, y: 3, gap: 2 };

  $.fn.splitInTiles = function( options ) {

    var o = $.extend( {}, _defaults, options );

    return this.each(function() {

      var $container = $(this),
          width = $container.width(),
          height = $container.height(),
          $img = $container.find('img'),
          n_tiles = o.x * o.y,
          wraps = [], $wraps;

      for ( var i = 0; i < n_tiles; i++ ) {
        wraps.push('<div class="tile"/>');
      }

      $wraps = $( wraps.join('') );
      $img.hide().after( $wraps );

      $wraps.css({
        width: (width / o.x) - o.gap,
        height: (height / o.y) - o.gap,
        marginBottom: o.gap +'px',
        marginRight: o.gap +'px',
        backgroundImage: 'url('+ $img.attr('src') +')'
      });

      $wraps.each(function() {
        var pos = $(this).position();
        $(this).css( 'backgroundPosition', -pos.left +'px '+ -pos.top +'px' );
      });

    });

  };

}( jQuery, window ));
于 2012-11-06T21:25:10.697 回答