04/10/2018, 20:15

Tạo menu động cực hấp dẫn với jQuery, Font-Awesome và CSS3

Có lúc chúng ta sẽ cần những mẫu menu nhỏ gọn để có thể phù hợp với những kiểu thiết kế web không có nhiều không gian. Hôm nay, trong bài viết này, mình xin chia sẻ cho các bạn một mẫu menu nhỏ gọn với hiệu ứng động cực kỳ sexy. Xem Demo | Download HTML Để minh họa menu , chúng ta ...

Có lúc chúng ta sẽ cần những mẫu menu nhỏ gọn để có thể phù hợp với những kiểu thiết kế web không có nhiều không gian. Hôm nay, trong bài viết này, mình xin chia sẻ cho các bạn một mẫu menu nhỏ gọn với hiệu ứng động cực kỳ sexy.

tao-menu-dong-cuc-hap-dan-voi-jquery-font-awesome-va-css3

Xem Demo | Download

HTML

Để minh họa menu , chúng ta cần khung chuẩn html như sau :

<div class="parent2">
  <div class="test1"><i class="fa fa-user fa-2x"></i></div>
  <div class="test2"><i class="fa fa-graduation-cap fa-2x"></i></div>
  <div class="test3"><i class="fa fa-code fa-2x"></i></div>
  <div class="test4"><i class="fa fa-envelope-o fa-2x"></i></div>
  <div class="mask2"><i class="fa fa-home fa-3x"></i></div>
</div>

CSS

Sau đó định dạng menu với đoạn css sau :

body {

  background: -webkit-linear-gradient(90deg, #16222A 10%, #3A6073 90%); /* Chrome 10+, Saf5.1+ */
  background:    -moz-linear-gradient(90deg, #16222A 10%, #3A6073 90%); /* FF3.6+ */
  background:     -ms-linear-gradient(90deg, #16222A 10%, #3A6073 90%); /* IE10 */
  background:      -o-linear-gradient(90deg, #16222A 10%, #3A6073 90%); /* Opera 11.10+ */
  background:         linear-gradient(90deg, #16222A 10%, #3A6073 90%); /* W3C */
        
}

.parent2 {
  top:15px;
  left:15px;
  position:fixed;
 display:block;
  awidth:100px;
  height:100px;
  background-color:transparent;
  border-radius:50%;
  z-index:20;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.test1 {
  awidth:60%;
  height:60%;
  background-color:dimGray;
  border-radius:50%;
  position:absolute;
  color:white;
  text-align:center;
  line-height:70px;
    top:25%;
  left:25%;
  z-index:19;
  transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    position:absolute;
}
.test2 {
  awidth:60%;
  height:60%;
  background-color:dimGray;
  border-radius:50%;
  position:absolute;
  color:white;
  text-align:center;
  line-height:70px;
    top:25%;
  left:25%;
  z-index:19;
  transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550) .2s;
}
.test3 {
  awidth:60%;
  height:60%;
  background-color:dimGray;
  border-radius:50%;
  position:absolute;
  color:white;
  text-align:center;
  line-height:70px;
    top:25%;
  left:25%;
  transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550) .4s;  
}
  .test4 {
  awidth:60%;
  height:60%;
  background-color:dimGray;
  border-radius:50%;
  position:absolute;
  color:white;
  text-align:center;
  line-height:70px;
  top:25%;
  left:25%;
  transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550) .6s;  
}
.mask2 {
  top:15px;
  left:15px;
  awidth:100px;
  height:100px;
  background:darkSlateGray;
  border-radius:50%;
  position:absolute;
  z-index:21;
  color:white;
  text-align:center;
  line-height:120px;
  cursor:pointer;
  position:fixed;
}

jQuery

Để tạo hiệu ứng động cho menu, chúng ta sẽ dùng đoạn jQuery sau :

$(document).ready(function() {

  var active1 = false;
  var active2 = false;
  var active3 = false;
  var active4 = false;

    $('.parent2').on('mousedown touchstart', function() {
    
    if (!active1) $(this).find('.test1').css({'background-color': 'gray', 'transform': 'translate(0px,125px)'});
    else $(this).find('.test1').css({'background-color': 'dimGray', 'transform': 'none'}); 
     if (!active2) $(this).find('.test2').css({'background-color': 'gray', 'transform': 'translate(60px,105px)'});
    else $(this).find('.test2').css({'background-color': 'darkGray', 'transform': 'none'});
      if (!active3) $(this).find('.test3').css({'background-color': 'gray', 'transform': 'translate(105px,60px)'});
    else $(this).find('.test3').css({'background-color': 'silver', 'transform': 'none'});
      if (!active4) $(this).find('.test4').css({'background-color': 'gray', 'transform': 'translate(125px,0px)'});
    else $(this).find('.test4').css({'background-color': 'silver', 'transform': 'none'});
    active1 = !active1;
    active2 = !active2;
    active3 = !active3;
    active4 = !active4;
      
    });
});

Thế là xong, nếu có gì khó hiểu ở những đoạn code mà mình chia sẻ cho các bạn thì đừng ngần ngại để lại tin nhắn dưới dạng comment nhé. Mình sẽ giúp các bạn hiểu và hoàn thành hiệu ứng menu này.

Chúc các bạn thành công !

Tags: css3 jQuery menu menu effect menu jquery

Chuyên Mục: Javascript

Bài viết được đăng bởi webmaster

0