jquery插件用于创建带有背景图像的方形图块

时间:2012-11-06 21:08:20

标签: php javascript jquery css3

我需要将图像分割成方形图块,用户可以在其上悬停或点击。

我应该使用纯css还是必须使用jquery?你有jquery插件的例子吗? (我发现this one但会对其他建议感兴趣)

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

该插件有点旧,我建议您使用此插件,改编自this other plugin

演示: 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 ));