自己动手写js分享插件 支持https QQ空间,微信,新浪微博

废话不多说,传送门:http://download.csdn.net/detail/cometwo/9620943

支持https:https://www.aishandian.com/news-631.html

参考文章:http://www.cnblogs.com/hooray/archive/2011/09/10/2172946.html

动画效果

$(document).on("click", ".msb_main", function() {
            if($(this).hasClass("disabled")) return;
            var e = 500; //动画时间
            var t = 250; //延迟时间
            var r = $(this).parent().find(".msb_network_button").length; //分享组件的个数
            var i = 60;
            var s = e + (r - 1) * t;
            var o = 1;
            var a = $(this).outerWidth();
            var f = $(this).outerHeight();
            var c = $(this).parent().find(".msb_network_button:eq(0)").outerWidth();
            var h = $(this).parent().find(".msb_network_button:eq(0)").outerHeight();
            var p = (a - c) / 2; //起始位置
            var d = (f - h) / 2; //起始位置
            var v = 0 / 180 * Math.PI;
            if(!$(this).hasClass("active")) {
                $(this).addClass("disabled").delay(s).queue(function(e) {
                    $(this).removeClass("disabled").addClass("active");
                    e()
                });
                $(this).parent().find(".msb_network_button").each(function() {
                    var n = p + (p + i * o) * Math.cos(v)*0.8; //结束位置
                    var r = d + (d + i * o) * Math.sin(v); //结束位置
                    $(this).css({
                        display: "block",
                        left: p + "px",
                        top: d + "px"
                    }).stop().delay(t * o).animate({
                        left: n + "px",
                        top: r + "px"
                    }, e);
                    o++
                })
            } else {
                o = r;
                $(this).addClass("disabled").delay(s).queue(function(e) {
                    $(this).removeClass("disabled").removeClass("active");
                    e()
                });
                $(this).parent().find(".msb_network_button").each(function() {
                    $(this).stop().delay(t * o).animate({
                        left: p,
                        top: d
                    }, e);
                    o--
                })
            }
        });

    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50

微信分享效果:

QQ空间分享效果:

这里写代码片
  • 1

HTML

<!DOCTYPE html>
<html>

    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>jQuery弹出社交分享按钮</title>
        <link rel="stylesheet" href="css/share.css" type="text/css" />
        <script src="js/jquery-2.1.4.js" type="text/javascript"></script>
        <script src="js/share.js" type="text/javascript"></script>
    </head>

    <body>
        <h1>分享插件</h1>
        <p>你是我的夏元小米苹果</p>
        <div id="socialShare"></div>
        <h2>分享QQ</h2>
        <a id="shareQQ">分享到QQ空间</a>
        <button id="main">我类个去</button>
        <script>
            $(function() {
                $("#socialShare").socialShare({
                    content: $("p").text().trim(),
                    url: "http://blog.csdn.net/libin_1/article/details/51935944",
                    titile: $("h1").text().trim()
                });
                $(".msb_main").trigger(‘click‘);
            });

            $("#shareQQ").on("click", function() {
                $(this).socialShare("tQQ");
            })

            $("#main").click(function() {
                var openUrl = "https://www.baidu.com"; //弹出窗口的url
                var iWidth = 630; //弹出窗口的宽度;
                var iHeight = 580; //弹出窗口的高度;
                var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗口的垂直位置;
                var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗口的水平位置;
                window.open(openUrl, "", "height=" + iHeight + ", width=" + iWidth + ", top=" + iTop + ", left=" + iLeft + "" + ",toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
                //window.open(‘page.html‘, ‘newwindow‘, ‘height=580, width=650, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no‘);
            });
            $(function() {
                function autocenter() {
                    var bodyW = parseInt(document.documentElement.clientWidth);
                    var bodyH = parseInt(document.documentElement.clientHeight);
                    var elW = $("#weixin").width();
                    var elH = $("#weixin").height();
                    console.log((bodyW - elW) / 2);
                    $("#weixin").css("left", (bodyW - elW) / 2);
                    $("#weixin").css("top", (bodyH - elH) / 2);
                }
                window.onresize = function() {
                    autocenter();
                };
            });
        </script>

    </body>

</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

JS

/*
 * @Description: 分享插件
 */
;
(function($, window, document, undefined) {
    //插件初始化
    function init(target, options) {
        var settings = $.extend({}, $.fn.socialShare.defaults, options);
        //初始化各个组件
        console.log(settings);
        var $msb_main = "<a class=‘msb_main‘><img title=‘分享‘ src=‘images/share_core_square.jpg‘></a>";
        var $social_group = "<div class=‘social_group‘>" +
            "<a class=‘msb_network_button weixin‘>weixin</a>" +
            "<a class=‘msb_network_button sina‘>sina</a>" +
            "<a class=‘msb_network_button tQQ‘>tQQ</a>" +
            "<a class=‘msb_network_button qZone‘>qZone</a>" +
            "<a class=‘msb_network_button douban‘>douban</a>" +
            "</div>";
        $(target).append($msb_main);
        $(target).append($social_group);
        $(target).addClass("socialShare");

        //添加腾讯微博分享事件
        $(document).on("click", ".msb_network_button.tQQ", function() {
            tQQ(this, settings);
        });
        //添加QQ空间分享事件
        $(document).on("click", ".msb_network_button.qZone", function() {
            qZone(this, settings);
        });
        //添加新浪微博分享事件
        $(document).on("click", ".msb_network_button.sina", function() {
            sinaWeibo(this, settings);
        });
        //添加豆瓣分享事件
        $(document).on("click", ".msb_network_button.douban", function() {
            doubanShare(this, settings);
        });
        //添加微信分享事件
        $(document).on("click", ".msb_network_button.weixin", function() {
            weixinShare(this, settings);
        });
        $(document).on("click", ".msb_main", function() {
            if($(this).hasClass("disabled")) return;
            var e = 500; //动画时间
            var t = 250; //延迟时间
            var r = $(this).parent().find(".msb_network_button").length; //分享组件的个数
            var i = 60;
            var s = e + (r - 1) * t;
            var o = 1;
            var a = $(this).outerWidth();
            var f = $(this).outerHeight();
            var c = $(this).parent().find(".msb_network_button:eq(0)").outerWidth();
            var h = $(this).parent().find(".msb_network_button:eq(0)").outerHeight();
            var p = (a - c) / 2; //起始位置
            var d = (f - h) / 2; //起始位置
            var v = 0 / 180 * Math.PI;
            if(!$(this).hasClass("active")) {
                $(this).addClass("disabled").delay(s).queue(function(e) {
                    $(this).removeClass("disabled").addClass("active");
                    e()
                });
                $(this).parent().find(".msb_network_button").each(function() {
                    var n = p + (p + i * o) * Math.cos(v)*0.8; //结束位置
                    var r = d + (d + i * o) * Math.sin(v); //结束位置
                    $(this).css({
                        display: "block",
                        left: p + "px",
                        top: d + "px"
                    }).stop().delay(t * o).animate({
                        left: n + "px",
                        top: r + "px"
                    }, e);
                    o++
                })
            } else {
                o = r;
                $(this).addClass("disabled").delay(s).queue(function(e) {
                    $(this).removeClass("disabled").removeClass("active");
                    e()
                });
                $(this).parent().find(".msb_network_button").each(function() {
                    $(this).stop().delay(t * o).animate({
                        left: p,
                        top: d
                    }, e);
                    o--
                })
            }
        });

    }

    function replaceAPI(api, options) {
        api = api.replace(‘{url}‘, options.url);
        api = api.replace(‘{title}‘, options.title);
        api = api.replace(‘{content}‘, options.content);
        api = api.replace(‘{pic}‘, options.pic);
        return api;
    }

    function OPenWindow(URL) {
        var openUrl = URL; //弹出窗口的url
        var iWidth = 630; //弹出窗口的宽度;
        var iHeight = 580; //弹出窗口的高度;
        var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗口的垂直位置;
        var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗口的水平位置;
        window.open(openUrl, "", "height=" + iHeight + ", width=" + iWidth + ", top=" + iTop + ", left=" + iLeft + "" + ",toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
        //window.open(‘page.html‘, ‘newwindow‘, ‘height=580, width=650, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no‘);
    }

    function tQQ(target, options) {
        var options = $.extend({}, $.fn.socialShare.defaults, options);
        OPenWindow(replaceAPI(tqq, options));
        //      window.open(replaceAPI(tqq, options));
    }

    function qZone(target, options) {
        var options = $.extend({}, $.fn.socialShare.defaults, options);
        OPenWindow(replaceAPI(qzone, options));
        //  window.open(replaceAPI(qzone, options));
    }

    function sinaWeibo(target, options) {
        var options = $.extend({}, $.fn.socialShare.defaults, options);
        OPenWindow(replaceAPI(sina, options));
        //  window.open(replaceAPI(sina, options));
    }

    function doubanShare(target, options) {
        var options = $.extend({}, $.fn.socialShare.defaults, options);
        OPenWindow(replaceAPI(douban, options));
        //  window.open(replaceAPI(douban, ));
    }

    function weixinShare(target, options) {
        var options = $.extend({}, $.fn.socialShare.defaults, options);
        console.log(options);
        showWX(replaceAPI(weixin, options));

        //  window.open(replaceAPI(weixin, ));
    }

    function autocenter() {
        var bodyW = parseInt(document.documentElement.clientWidth);
        var bodyH = parseInt(document.documentElement.clientHeight);
        var elW = $("#weixin").width();
        var elH = $("#weixin").height();
        console.log((bodyW - elW) / 2);
        $("#weixin").css("left", (bodyW - elW) / 2);
        $("#weixin").css("top", (bodyH - elH) / 2);
    }

    function showWX(url) {
        var weixing = ‘<div id="weixin">‘ +
            ‘<div class="bd_weixin_popup_head">‘ +
            ‘<span>分享到微信朋友圈</span>‘ +
            ‘<a href="#" id="close" class="bd_weixin_popup_close">×</a>‘ +
            ‘</div>‘ +
            ‘<div class="erweima">‘ +
            ‘<img class="erweimas" src="" />‘ +
            ‘</div>‘ +
            ‘<p class="msgs">打开微信,点击右上角的  + ,<br/> 使用“扫一扫”即可将网页分享至朋友圈。</p>‘ +
            ‘</div>‘;
        $("body").append(weixing);
        $(".erweimas").attr(‘src‘, url);
        autocenter();
        $("#weixin").show();
    }
    $(document).on(‘click‘, "#close", function() {
        $("#weixin").hide();
    });
    $.fn.socialShare = function(options, param) {
        if(typeof options == ‘string‘) {
            var method = $.fn.socialShare.methods[options];
            if(method)
                return method(this, param);
        } else
            init(this, options);
    }

    //插件默认参数
    $.fn.socialShare.defaults = {
        url: window.location.href,
        title: document.title,
        content: ‘‘,
        pic: ‘‘
    }

    //插件方法
    $.fn.socialShare.methods = {
        //初始化方法
        init: function(jq, options) {
            return jq.each(function() {
                init(this, options);
            });
        },
        tQQ: function(jq, options) {
            return jq.each(function() {
                tQQ(this, options);
            })
        },
        qZone: function(jq, options) {
            return jq.each(function() {
                qZone(this, options);
            })
        },
        sinaWeibo: function(jq, options) {
            return jq.each(function() {
                sinaWeibo(this, options);
            });
        },
        doubanShare: function(jq, options) {
            return jq.each(function() {
                doubanShare(this, options);
            });
        },
        weixinShare: function(jq, options) {
            return jq.each(function() {
                weixinShare(this, options);
            });
        }
    }

    //分享地址
    var qzone = ‘http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url={url}&title={title}&pics={pic}&summary={content}‘;
    var sina = ‘http://service.weibo.com/share/share.php?url={url}&title={title}&pic={pic}&searchPic=false‘;
    var tqq = ‘http://share.v.t.qq.com/index.php?c=share&a=index&url={url}&title={title}&appkey=801cf76d3cfc44ada52ec13114e84a96‘;
    var douban = ‘http://www.douban.com/share/service?href={url}&name={title}&text={content}&image={pic}‘;
    var weixin = ‘http://qr.liantu.com/api.php?text={url}‘; //接受URL返回图片

})(jQuery, window, document);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232

CSS

@charset "utf-8";
.socialShare {
    display: block;
    width: 54px;
    height: 54px;
    position: relative;
    z-index: 1;
}

.socialShare .msb_main {
    display: block;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    text-indent: -9999px;
    border: 4px solid #FFF;
    box-shadow: 0 0 5px #DDD;
    border-radius: 36px;
}

.socialShare .msb_main:hover {
    box-shadow: 0 0 5px #BBB;
}

.socialShare .msb_main img {
    width: 46px;
    height: 46px;
    cursor: pointer;
    border-radius: 23px;
    border: none;
    float: left
}

.socialShare .msb_network_button {
    width: 31px;
    height: 31px;
    position: absolute;
    top: 9px;
    left: 92px;
    z-index: 1;
    cursor: pointer;
    text-indent: -9999px;
    display: none;
    background: no-repeat;
    border: 6px solid #f5f5f5;
    border-radius: 50%;
}

.socialShare .msb_network_button.sina {
    background: url(../images/social.png) no-repeat -130px -87px;
}

.socialShare .msb_network_button.tQQ {
    background: url(../images/social.png) no-repeat -185px -20px;
}

.socialShare .msb_network_button.qZone {
    background: url(../images/social.png) no-repeat -73px -20px;
}

.socialShare .msb_network_button.douban {
    background: url(../images/social.png) no-repeat -130px -151px;
}

.socialShare .msb_network_button.weixin {
    background: url(../images/social.png) no-repeat -73px -87px;
}

.socialShare .msb_network_button:hover {
    transition: -moz-transform 2s ease-out 0s;
    border: 6px solid #eee;
}
/*自定义*/

#weixin {
    width: 262px;
    height: 317px;
    border: solid 1px #d8d8d8;
    z-index: 1000000;
    position: fixed;
    top: 0px;
    left: 0px;
    background: white;
    display: none;
}

#weixin .bd_weixin_popup_head {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    line-height: 16px;
    height: 16px;
    position: relative;
    color: #000;
    width: 90%;
    margin: 10px auto;
}

#weixin .bd_weixin_popup_head .bd_weixin_popup_close {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
    text-decoration: none;
    font-size: 16px;
}

#weixin .erweima {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

#weixin .erweima .erweimas {
    width: 100%;
    display: block;
}

#weixin .msgs {
    width: 90%;
    margin: 0 auto;
    font-size: 12px;
    text-align: left;
    line-height: 22px;
    color: #666;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://www.cnblogs.com/captainbed

原文地址:https://www.cnblogs.com/xkiwnchwhd/p/10170407.html

时间: 2024-11-14 10:06:51

自己动手写js分享插件 支持https QQ空间,微信,新浪微博的相关文章

自己动手写js分享插件 [支持https] (可以分享QQ空间,微信,新浪微博。。。)

由于百度分享,jiathis 等分享插件在https下均会报错,就萌生了自己动手写一个分享插件的念头,其实实现起来一点都不难,以下代码都已在https网站运行通过,特附上以下代码:还请各位看官不吝赐教: 附上演示效果网址:https://www.aishandian.com/jiekuan_zhishi-979.html 动画实现效果代码 $(document).on("click", ".msb_main", function() { if($(this).has

自己动手写js分享插件(QQ空间,微信,新浪微博。。。)

参考博客:http://blog.csdn.net/libin_1/article/details/52424340 下载链接:http://download.csdn.net/detail/cometwo/9620943

百度分享不支持https的解决方案

站点自从开启 https 之后 ,百度分享就不能用了!但是又寻找不到类似百度分享的替代品.. 怎么办呢?要如何解决 百度分享不支持https的问题呢, 跟着博主动动手,让你百度分享仍然能在https下使用 ~ 伸手党 先上伸手党的解决方案~ 博主修改好的分享代码(下面两个链接下载其中一个的即可)  http://pan.baidu.com/s/1pLnHk4j     密码:pfr7  (下面两个地址中文件不全) http://vdisk.weibo.com/lc/2wtonQtT2CvFl89

分享到QQ空间、新浪微博、腾讯微博的代码!(收藏)

QQ空间分享代码如下:   <a href="javascript:void(0);" onclick="window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+encodeURIComponent(document.location.href));return false;" title="分享到QQ空间"><img src=&

分享到QQ空间、新浪微博、腾讯微博的代码!

给网页加上分享代码,借助网友的力量推广网站,目前已经很流行了 以下是网页代码 QQ空间分享代码如下: <a href="javascript:void(0);" onclick="window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+encodeURIComponent(document.location.href));return false;" title

iShare.js分享插件

iShare.js是一个小巧的分享插件,纯JS编写,不依赖任何第三方库,使用简便.为啥写这个插件? 因为在搭建个人blog时(还没有搭建好(¯﹃¯)),对目前国内比较受欢迎的分享插件都不太满意,主要如下几点: 不太喜欢官方提供的样式,想重新定制,但又不太方便 提供的大部分接口都没用到,真正用到就那么几个,显得有点冗余 没有进行更新维护,部分接口都是挂掉 另外,工作中,有时想要一个可以自定义样式.支持常用的分享接口.使用方便.不依赖于第三库的独立库.比如写活动页面时(⊙﹏⊙) 基于上述原因自己就创

js分享插件

这是个在线版的分享插件 <div class="share-icon"> <span>分享:</span> <div class="jiathis_style_24x24"> <a class="jiathis_button_qzone"></a> <a class="jiathis_button_tsina"></a> <a

JS时间轴效果(类似于qq空间时间轴效果)

2013-11-04 23:51 by 空智, 4041 阅读, 15 评论, 收藏, 编辑 在上一家公司写了一个时间轴效果,今天整理了下,感觉有必要写一篇博客出来 给大家分享分享 当然代码还有很多不足的地方,希望大家多指点指点下,此效果类似于QQ空间或者人人网空间时间轴效果,当时也是为了需求 研究了下qq空间逻辑(当然JS代码压缩了肯定看不到的),只是当时研究了下他们HTML结构和css结构,所以仿照他们那种逻辑自己也写了一个出来.先来看看是个什么样的吧!如下图所示: 需求分析:左侧是一个时间

分享到QQ空间和新浪微博功能

分享到QQ空间 http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://campus.51job.com/cmbnt/?pageid_1&;title=xxxx2018校园招聘&;desc=xxxx&;summary=xxxxx&;site=xxxxx 分享到新浪微博 <a id="video_weibo" href="http://v.t.sina.co