我刚刚在http://www.pepkarsten.com/artdirection上看到了新的投资组合网站。

它是一个加载图像的页面(带有加载器动画,预加载和键盘快捷键)。

这是JavaScript代码(使用jQuery)。如何进行优化?

$(document).ready(function() {
    function page(slide,width,height,color) {
        this.slide=slide;
        this.width=width;
        this.height=height;
        this.color=color;
    };

    var pages=[
        new page('alutech1',900,675,'1d486b'),
        new page('alutech2',900,675,'00ea00'),
        new page('mane3',675,900,'74878e'),
        new page('mane4',675,900,'74878e'),
        new page('mane1',900,675,'6ecb00'),
        new page('topfit_zen',900,675,'203400'),
        new page('topfit_muscu',900,675,'01acb3'),
        new page('topfit_stval',900,675,'525962'),
        new page('arles_1',636,900,'fb926d'),
        new page('arles_2',636,900,'c12f2f'),
        new page('arles_3',636,900,'cdc6b4'),
        new page('topsol',900,633,'f7e700'),
        new page('wak',900,675,'78f900')
    ];
    var imgDir='img/';
    var slidePrefix='pepkarsten_';
    var slideExt='.jpg';
    $.autoMouseOver();
    $.blurLinks();

    function prevPageNumber() {
        return currentPage>0?currentPage-1:pages.length-1;
    };

    function nextPageNumber() {
        return currentPage<pages.length-1?currentPage+1:0;
    };

    function displayPage(n) {
        $('#nav-top')
            .css('background-color','#'+pages[n].color);
        $('#slide')
            .addClass('loading')
            .find('img')
            .css('visibility','hidden')
            .css('width',pages[n].width)
            .css('height',pages[n].height)
            .unbind('load')
            .load(function() {
                $(this)
                    .css('visibility','visible');
                $('#slide')
                    .removeClass('loading');
                $.preloadImg(imgDir+slidePrefix+pages[nextPageNumber()].slide+slideExt,imgDir+slidePrefix+pages[prevPageNumber()].slide+slideExt);
            })
            .attr('src',imgDir+slidePrefix+pages[n].slide+slideExt);
        currentPage=n;
    };

    function homePage() {
        displayPage(0);
    };

    function nextPage() {
        displayPage(nextPageNumber());
    };

    function prevPage() {
        displayPage(prevPageNumber());
    };

    homePage();
    $('#home')
        .onclick(homePage)
        .shortcut('up');
    $('#next')
        .onclick(nextPage)
        .shortcut('right');
    $('#prev')
        .onclick(prevPage)
        .shortcut('left');
    $('#slide')
        .onclick(nextPage);
    $('#contact')
        .email('info','pepkarsten.com')
        .hover(
            function() {$('#tip-contact').slideDown(200)},
            function() {$('#tip-contact').stop(true,true).hide()});
    $('#linkedin')
        .onclick(function() {
            window.open('http://www.linkedin.com/in/pepkarsten');
        })
        .hover(
            function() {$('#tip-linkedin').slideDown(200)},
            function() {$('#tip-linkedin').stop(true,true).hide()});
});

(function($){
    var imgCache=new Array();
    $.preloadImg=function() {
        for(var i=0; i<arguments.length; i++) {
            var img=new Image();
            img.src=arguments[i];
            imgCache[img.src]=img;
        }
    };
    $.autoMouseOver=function(outStr,overStr) {
        if(!overStr) var outStr='-out.', overStr='-over.';
        $('img[src*='+ outStr +']')
            .each(function() {$.preloadImg($(this).attr("src").replace(outStr,overStr))})
            .hover(
                function() {$(this).attr("src",$(this).attr("src").replace(outStr,overStr))},
                function() {$(this).attr("src",$(this).attr("src").replace(overStr,outStr))});
    };
    $.blurLinks=function() {
        $("a").focusin(function() {
            this.blur();
        });
    };
    $.fn.onclick=function(f) {
        $(this).click(function() {
            f();
            return false;
        });
        return this;
    };
    $.address=function(u,d) {
        return u+'@'+d;
    };
    $.fn.email=function(u,d,s,b) {
            var l='mailto:'+$.address(u,d);
            if(s||b) {
                l+='?';
                if(s) {
                    l+='subject='+s;
                    if(b) l+='&';
                };
                if(b) l+='body='+b;
            };
        $(this).click(function() {
            window.open(l);
            return false;
        });
        return this;
    };
    $.fn.shortcut=function(key) {
        var code={'left':37,'up':38,'right':39,'down':40};
        var $this=$(this);
        $(document).keydown(function(e) {
            if(e.keyCode==code[key]) {
                $this.click();
                return false;
            };
        });
        window.focus();
        return this;
    };
})(jQuery);

最佳答案

实际答案:无需优化,您就可以进行平稳的工作预加载,从而最大程度地降低连接缓慢的影响。代码中任何速度缺陷的影响都可以忽略不计,网络优化正确完成,在这种情况下,这很重要。

理论上的答案:如果您真的担心性能,那么就不要使用jQuery,您根本就没有制作真正优化的JavaScript所需的低级控制,并且由于看起来很简单,因此最终会产生很多混淆的开销jQuery函数实际上可能具有复杂的实现,因此会花费大量时间。

作为记录,我想说您是我遇到的第一个可以编码的设计师。当然,还有其他人可以将一些命令组合在一起,但是似乎您实际上知道自己在做什么。关于这条道路的建议是,因为我认为您是可以管理这条道路的人:无论别人告诉您什么,质疑它,尝试寻找相反的证据并在必要时进行自己的研究。

编辑:关于jQuery与JavaScript
正如我所看到的,jQuery的最大优点是它修复了许多浏览器差异,因此您不必担心代码是否可以在所有浏览器中使用。 jQuery还具有很多“魔术”功能,可以使编码变得更容易,但是魔术通常在速度方面花费很多,多少取决于您使用的功能以及使用方式。您很容易在脚本执行中丢掉10倍,但是大多数代码仍然受到DOM操作的限制,而jQuery并没有降低它的速度。
我不喜欢jQuery语法,这与当前使用闭包并尽可能使用关键字this盘绕一切的当前趋势非常吻合。当然,这并不是说如果使用jQuery就必须编写这种不可读的代码,但是很难不朝那个方向拖动。如果您写的东西很大,我会更喜欢JavaScript,因为可读性是一个更大的问题。

关于javascript - JavaScript/jQuery优化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3949846/

10-11 23:32
查看更多