溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么用jQuery和CSS實(shí)現(xiàn)縮略圖懸浮逼近效果

發(fā)布時(shí)間:2021-08-10 13:38:14 來源:億速云 閱讀:133 作者:chen 欄目:web開發(fā)

這篇文章主要講解了“怎么用jQuery和CSS實(shí)現(xiàn)縮略圖懸浮逼近效果”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么用jQuery和CSS實(shí)現(xiàn)縮略圖懸浮逼近效果”吧!

今天我們?yōu)榇蠹医榻B一個(gè)使用jQuery實(shí)現(xiàn)的縮略圖逼近效果。主要的想法是當(dāng)鼠標(biāo)接近縮略圖后,當(dāng)前的縮略圖會(huì)放大,并且周圍相鄰的縮略圖也會(huì)相應(yīng)變大一些,當(dāng)你移動(dòng)鼠標(biāo)時(shí),會(huì)影響移動(dòng)方向上的縮略圖大小變化,具體效果請(qǐng)大家查看演示。

實(shí)例下載

你可以在這個(gè)網(wǎng)站https://cache.yisu.com/upload/information/20210521/366/474763.com" /> 

  •             <div class="pe-description"> 

  •                 <h4>Time</h4> 

  •                 <p>Since time, and his predestinated end</p> 

  •             </div></a> 

  •     </li> 

  •     <li><!-- ... --></li> 

  • </ul> 

  • CSS樣式

    以下定義了縮略圖居中,并且添加背景圖片使得圖片產(chǎn)生透明度變化效果

    pe-thumbs{      width: 900px;      height: 400px;      margin: 20px auto;      position: relative;      background: transparent url(../images/3.jpg) top center;      border: 5px solid #fff;      box-shadow: 0 1px 2px rgba(0,0,0,0.2);  }

    同時(shí)我們也使用一個(gè)RGBA的背景顏色添加一個(gè)小點(diǎn)綴到背景圖片。

    .pe-thumbs:before {      content: "";      display: block;      position: absolute;      top: 0px;      left: 0px;      width: 100%;      height: 100%;      background: rgba(255,102,0,0.2);  }

    列表中的項(xiàng)目將會(huì)向左float,并且我們?cè)O(shè)置錨定和圖片的相對(duì)位置:

    .pe-thumbs li{      float: left;      position: relative;  }  .pe-thumbs li a,  .pe-thumbs li a img{      display: block;      position: relative;  }

    每一個(gè)縮略圖都初始100px并且透明度為0.2:

    .pe-thumbs li a img{      width: 100px;      opacity: 0.2;  }

    ***我們定義描述內(nèi)容的樣式:

    .pe-description h4{      padding: 10px 10px 0px 10px;      line-height: 20px;      font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;      font-size: 22px;      margin: 0px;  }  .pe-description p{      padding: 10px 0px;      margin: 10px;      font-size: 11px;      font-style: italic;      border-top: 1px solid rgba(255,255,255,0.3);  }

    JavaScript代碼

    主要的想法是當(dāng)鼠標(biāo)懸浮后計(jì)算所有的描述容器大小和位置。主要依賴于縮略圖的***尺寸及其居于主要wrapper中的位置。例如,當(dāng)縮略圖接近邊緣,我們就使得描述區(qū)域顯示在縮略圖左邊

    然后我們將幫定逼近事件到圖片。主要想法是根據(jù)鼠標(biāo)位置來變化圖片大小。一旦圖片達(dá)到***尺寸,我們?cè)O(shè)置z-index***,因此位于***層次,并且顯示分開的描述。

    // list of thumbs  var $list        = $('#pe-thumbs'),      // list's width and offset left.      // this will be used to know the position of the description container      listW        = $list.width(),      listL        = $list.offset().left,      // the images      $elems        = $list.find('img'),      // the description containers      $descrp        = $list.find('div.pe-description'),      // maxScale : maximum scale value the image will have      // minOpacity / maxOpacity : minimum (set in the CSS) and maximum values for the image's opacity      settings    = {          maxScale    : 1.3,          maxOpacity    : 0.9,          minOpacity    : Number( $elems.css('opacity') )      },      init        = function() {           // minScale will be set in the CSS          settings.minScale = _getScaleVal() || 1;          // preload the images (thumbs)          _loadImages( function() {               _calcDescrp();              _initEvents();           });       },      // Get Value of CSS Scale through JavaScript:      // http://css-tricks.com/get-value-of-css-rotation-through-javascript/      _getScaleVal= function() {           var st = window.getComputedStyle($elems.get(0), null),              tr = st.getPropertyValue("-webkit-transform") ||                   st.getPropertyValue("-moz-transform") ||                   st.getPropertyValue("-ms-transform") ||                   st.getPropertyValue("-o-transform") ||                   st.getPropertyValue("transform") ||                   "fail...";           if( tr !== 'none' ) {                    var values = tr.split('(')[1].split(')')[0].split(','),                  a = values[0],                  b = values[1],                  c = values[2],                  d = values[3];               return Math.sqrt( a * a + b * b );           }       },      // calculates the style values for the description containers,      // based on the settings variable      _calcDescrp    = function() {           $descrp.each( function(i) {               var $el        = $(this),                  $img    = $el.prev(),                  img_w    = $img.width(),                  img_h    = $img.height(),                  img_n_w    = settings.maxScale * img_w,                  img_n_h    = settings.maxScale * img_h,                  space_t = ( img_n_h - img_h ) / 2,                  space_l = ( img_n_w - img_w ) / 2;               $el.data( 'space_l', space_l ).css({                  height    : settings.maxScale * $el.height(),                  top        : -space_t,                  left    : img_n_w - space_l              });           });       },      _initEvents    = function() {           $elems.on('proximity.Photo', { max: 80, throttle: 10, fireOutOfBounds : true }, function(event, proximity, distance) {               var $el            = $(this),                  $li            = $el.closest('li'),                  $desc        = $el.next(),                  scaleVal    = proximity * ( settings.maxScale - settings.minScale ) + settings.minScale,                  scaleExp    = 'scale(' + scaleVal + ')';               // change the z-index of the element once              // it reaches the maximum scale value              // also, show the description container              if( scaleVal === settings.maxScale ) {                   $li.css( 'z-index', 1000 );                   if( $desc.offset().left + $desc.width() > listL + listW ) {                       $desc.css( 'left', -$desc.width() - $desc.data( 'space_l' ) );                   }                   $desc.fadeIn( 800 );               }              else {                   $li.css( 'z-index', 1 );                   $desc.stop(true,true).hide();               }                   $el.css({                  '-webkit-transform'    : scaleExp,                  '-moz-transform'    : scaleExp,                  '-o-transform'        : scaleExp,                  '-ms-transform'        : scaleExp,                  'transform'            : scaleExp,                  'opacity'            : ( proximity * ( settings.maxOpacity - settings.minOpacity ) + settings.minOpacity )              });           });       },      _loadImages    = function( callback ) {           var loaded     = 0,              total    = $elems.length;           $elems.each( function(i) {               var $el = $(this);               $('<img>').load( function() {                   ++loaded;                  if( loaded === total )                      callback.call();               }).attr( 'src', $el.attr('src') );           });       };   return {      init    : init  };

感謝各位的閱讀,以上就是“怎么用jQuery和CSS實(shí)現(xiàn)縮略圖懸浮逼近效果”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)怎么用jQuery和CSS實(shí)現(xiàn)縮略圖懸浮逼近效果這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI