Maison >interface Web >js tutoriel >Plug-in d'effets spéciaux d'image jQuery Révéler réalise l'étirement et le grossissement_jquery

Plug-in d'effets spéciaux d'image jQuery Révéler réalise l'étirement et le grossissement_jquery

WBOY
WBOYoriginal
2016-05-16 16:02:381259parcourir

Cliquez sur l'image et l'image sera étirée et agrandie. L'effet est génial !

Comment utiliser :

1. Fichiers de référence de la zone d'en-tête jquery.js, photorevealer.js, datouwang.css

2. Ajouter cf1dc1ef4a9212b51c54d3d6ea44f8c0e653bc5d4fc68b8d8eac7f3b90ef5e65code de région

3. Le nombre d'images peut être augmenté ou diminué librement, il suffit d'ajouter ou de supprimerb6c5a531a458a2e790c1fd6421739d1cb90dd5946f0946207856a8a37f441edf

4. Si l'image contient plus d'informations et nécessite plus d'espace, vous pouvez modifier le numéro à la ligne 36 dans photorevealer.js

Code de base :

$(document).ready(function(){
     
$('.photo_slider').each(function(){
   
  var $this = $(this).addClass('photo-area');
  var $img = $this.find('img');
  var $info = $this.find('.info_area');
     
  var opts = {};
   
  $img.load(function(){
    opts.imgw = $img.width();
    opts.imgh = $img.height();
  });
   
  opts.orgw = $this.width();
  opts.orgh = $this.height();
   
  $img.css ({
    marginLeft: "-150px",
    marginTop: "-150px"
  });
   
  var $wrap = $('<div class="photo_slider_img">').append($img).prependTo($this);
 
  var $open = $('<a href="#" class="more_info">More Info ></a>').appendTo($this);
   
  var $close = $('<a class="close">Close</a>').appendTo($info);
   
  opts.wrapw = $wrap.width();
  opts.wraph = $wrap.height();
   
  $open.click(function(){
    $this.animate({ 
      width: opts.imgw,
      height: (opts.imgh+30),
      borderWidth: "10"
    }, 600 );
         
    $open.fadeOut();
     
    $wrap.animate({ 
      width: opts.imgw,
      height: opts.imgh
    }, 600 );
 
    $(".info_area",$this).fadeIn();
     
    $img.animate({
      marginTop: "0px",
      marginLeft: "0px"
    }, 600 );
     
    return false;
  });
   
  $close.click(function(){
    $this.animate({ 
      width: opts.orgw,
      height: opts.orgh,
      borderWidth: "1"
     }, 600 );
     
    $open.fadeIn();
     
    $wrap.animate({ 
      width: opts.wrapw,
      height: opts.wraph
       }, 600 );
     
      $img.animate({
        marginTop: "-150px",
        marginLeft: "-150px"
      }, 600 );
 
    $(".info_area",$this).fadeOut();
    return false;
  });
   
});
 
});

Ce qui précède est le code complet de cet article, j'espère que vous l'aimerez tous.

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn