最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

jQuery手机wap图标菜单导航

来源:http://www.erdangjiade.com/ 沐浴春风 2015-08-20 09:34浏览(1484)

分享一个手机wap自定义图标菜单效果,鼠标悬浮导航试试呢。

0、请不要问“在不在”之类的问题,有问题直接问!1、学生或暂时没有工作的童鞋,整站资源免费下载!2、¥9.9充值终身VIP会员,加我微信,826096331 拉你进VIP群学习!3、程序员加油,技术改变世界。在线 充值

jQuery手机wap图标菜单导航
分类:导航菜单 > 图标导航 难易:中级
查看演示

加我微信,拉你进VIP群学习:

下载资源 下载积分: 30 积分

自定义图标菜单

  • 1.商品展示管理模块
    自主添加产品类别,不限级数。后台对产品实现增、查、删、改等功能。前端对产品进行列表展示、详细页面展示。详细页面包含产品小图、大图、详细参数、文字内容介绍、多图滚动展示、图片放大展示、关联资讯介绍展示。
  • 2.会员注册、登陆管理模块
    管理会员注册信息、会员列表,建立会员等级权限组,分配会员至权限组,然后根据权限使用网站的其它各个功能模块。
  • 3.会员基本资料管理模块
    对会员注册的基本资料进行查看、修改。

jQuery

$(function() {
    $(".s-mod ul").fadeIn(300, function() {
        $(".s-mod .s-mod-loding").remove();
    })
    $(".s-mod ul .s-mod-item").each(function() {
        var i = $(this);
        var o = {
            w: 1 * i.attr("w"),
            h: 1 * i.attr("h"),
            l: 1 * i.attr("l"),
            t: 1 * i.attr("t"),
            bg: i.attr("bg"),
            cbg: i.attr("cbg"),
            speed: 600
        };
        var wrap = i.find(".s-mod-wrap");
        var def = i.find(".s-mod-def");
        var cur = i.find(".s-mod-cur");
        i.css({width: o.w, height: o.h, left: o.l, top: o.t});
        wrap.css({width: o.w, height: o.h});
        def.css({width: (o.w - 24), height: o.h, backgroundColor: o.bg});
        cur.css({width: (o.w - 24), height: o.h, backgroundColor: o.cbg, top: o.h});

        def.find("span").css({paddingTop: ((o.h - def.find("span").height()) / 2)})
        cur.find("span").css({paddingTop: ((o.h - cur.find("span").height()) / 2)})

        //滑动效果
        i.hover(function() {
            def.stop().animate({top: -o.h}, o.speed, "easeOutBounce")
            cur.stop().animate({top: 0}, o.speed, "easeOutBounce")
        }, function() {
            def.stop().animate({top: 0}, o.speed, "easeOutBounce")
            cur.stop().animate({top: o.h}, o.speed, "easeOutBounce")
        })
    })
})
标签: 自定义
声明:本文为原创文章,如需转载,请注明来源erdangjiade.com并保留原文链接:https://www.erdangjiade.com/js/402.html
评论1
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

  • 头像 沙发
    11-08 11:17
    qq562140910
    屮艸遪哦草草
1 2