效果:
點擊第二個選單項目後出現一個向上滑動的動畫,控制margin-top底部另一個div中的文字
上移從而替換掉原有的文字。
原理其實不難無非就是css的控制加上jquery的程式碼
對docemnt中所有li綁定一個hover事件,事件中依照滑鼠的狀態(無非是移入與移除),
使用animate的動畫方式使原有的div向上移70px,移出時再將頁面效果變回原有的樣子。
程式碼如下:
$(function ($(function) {
var webNav = {
val: {
target: 0
},
init: function () {
$(".gnb ul li").on ("hover", webNav.hover);
},
hover: function (e) {
if ($(this).index() == webNav.val. target) { return };
if (e.type == "mouseenter") {
$(this).find("a>p").stop(true, true).animate({ "margin -top": "-70px" }, 300);
} else if (e.type == "mouseleave") {
$(this).find("a>p").stop(true , true).animate({ "margin-top": "0px" }, 300);
}
}
};
webNav.init();
});