您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > jQuery特效 >

    jQuery鼠标滑过图片散开显示文字

    时间:2014-08-27 10:00 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表

    jQuery鼠标滑过图片散开显示文字jQuery鼠标滑过图片散开显示文字是一款基于jQuery实现的鼠标图文特效,酷似CSS3特效。jquery鼠标滑过文字特效图文切换

    <script>$(document).ready(function() {


      //Custom settings
      var style_in = 'easeOutBounce';
      var style_out = 'jswing';
      var speed_in = 1000;
      var speed_out = 300;  


      //Calculation for corners
      var neg = Math.round($('.qitem').width() / 2) * (-1); 
      var pos = neg * (-1); 
      var out = pos * 2;
      
      $('.qitem').each(function () {
      
        url = $(this).find('a').attr('href');
        img = $(this).find('img').attr('src');
        alt = $(this).find('img').attr('img');
        
        $('img', this).remove();
        $(this).append('<div class="topLeft"></div><div class="topRight"></div><div class="bottomLeft"></div><div class="bottomRight"></div>');
        $(this).children('div').css('background-image','url('+ img + ')');


        $(this).find('div.topLeft').css({top:0, left:0, width:pos , height:pos}); 
        $(this).find('div.topRight').css({top:0, left:pos, width:pos , height:pos});  
        $(this).find('div.bottomLeft').css({bottom:0, left:0, width:pos , height:pos}); 
        $(this).find('div.bottomRight').css({bottom:0, left:pos, width:pos , height:pos});  


      }).hover(function () {
      
        $(this).find('div.topLeft').stop(false, true).animate({top:neg, left:neg}, {duration:speed_out, easing:style_out}); 
        $(this).find('div.topRight').stop(false, true).animate({top:neg, left:out}, {duration:speed_out, easing:style_out});  
        $(this).find('div.bottomLeft').stop(false, true).animate({bottom:neg, left:neg}, {duration:speed_out, easing:style_out}); 
        $(this).find('div.bottomRight').stop(false, true).animate({bottom:neg, left:out}, {duration:speed_out, easing:style_out});  
      },
      function () {


        $(this).find('div.topLeft').stop(false, true).animate({top:0, left:0}, {duration:speed_in, easing:style_in}); 
        $(this).find('div.topRight').stop(false, true).animate({top:0, left:pos}, {duration:speed_in, easing:style_in});  
        $(this).find('div.bottomLeft').stop(false, true).animate({bottom:0, left:0}, {duration:speed_in, easing:style_in}); 
        $(this).find('div.bottomRight').stop(false, true).animate({bottom:0, left:pos}, {duration:speed_in, easing:style_in});  
      
      }).click (function () {
    window.open($(this).find('a').attr('href'));
        //window.location = $(this).find('a').attr('href'); 
      });
    });
    </script> 

    jQuery鼠标滑过图片散开显示文字由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/jQuerytexiao/10146.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!