뛰어난 jquery 플 래 쉬 내 비게 이 션 표시 줄 필터

FLASH 내 비게 이 션 은 현재 기본적으로 시대 에 뒤떨어 졌 지만, 우 리 는 jQuery 로 플래시 효 과 를 실현 할 수 있어 서 매우 좋다.
프레젠테이션 주소:http://demo.jb51.net/js/2014/jqeryfangflashdh/demo.html
 
  
 
 
     
    demo01 
     
     
     
 
 
       
 
       

 
 
  
$(document).ready(function(){ 
    $(".menu").mouseover(function(){ 
        var div = $(this).children(".menu_b"); 
        var span = $(this).children("span"); 
        // , 20px 
        span.stop(true,false).animate({opacity:'0',left:'20px'},200); 
        //  
        div.stop(true,false).animate({width:'100px',marginLeft:'-50px',height:'1px',opacity:'1'},300); 
        div.animate({height:'40px',marginTop:'-20px',opacity:'1'},300); 
        // , 20px 
        span.animate({opacity:'1',left:'0px'},300); 
        span.css({color:'#FFF'}); 
    }); 
 
    $(".menu").mouseout(function(){ 
        var div = $(this).children(".menu_b"); 
        var span = $(this).children("span"); 
        // , 20px 
        span.stop(true,false).animate({opacity:'0',left:'20px'},200); 
        //  
        div.stop(true,false).animate({height:'1px',marginTop:'0px',opacity:'1'},300); 
        div.animate({width:'0px',marginLeft:'0px',opacity:'1'},300); 
        // , 20px 
        span.animate({opacity:'1',left:'0px'},300); 
        span.css({color:'#777'}); 
    }); 
}); 

 애니메이션 효 과 는 제 취향 에 따라 쓴 것 입 니 다. 좋아 하 는 것 은 제 가 필 터 를 바 꿀 수 있 습 니 다.
 
  
/* demo01 css */ 
#main{ 
    background: #EEE; 
    display: inline-block; 
    padding: 10px; 

.menu{position: relative; 
    width: 100px; 
    height: 40px; 
    margin: 10px auto; 

 
.menu_b{ 
    position: absolute; 
    width: 0px; 
    height: 0px; 
    background: red; 
    z-index: 1px; 
    top: 50%; 
    left: 50%; 

.menu span{ 
    position: inherit; 
    display: block; 
    text-align: center; 
    line-height: 40px; 
    z-index: 3px; 
    font-size: 14px; 
    font-family: "Microsoft Yahei"; 
    color: #777; 
    cursor: pointer; 

.back1{ 
    background: #FF0000; 

.back2{ 
    background: #921AFF; 

.back3{ 
    background: #00CACA; 

.back4{ 
    background: #00DB00; 

.back5{ 
    background: #FF5809; 

.back6{ 
    background: #E1E100; 


코드 는 간단 하고 사용 도 간단 합 니 다. 수정 도 간단 합 니 다. 친구 들 이 알 아서 하 세 요.

좋은 웹페이지 즐겨찾기