Fork me on GitHub

腾讯课堂产品经理十天充电计划学习总结

前言

2017年1月5号收到腾讯课堂产品学院(微信公众号)的推送,有一个产品经理十天免费充电计划,于是扫描二维码,入群学习。从1月9日-1月18日,通过看资深产品经理的视频课程(录播+直播),现将学习笔记总结如下:

产品运营(人人网运营总监殷莉锋)

产品分享(腾讯P4专家产品经理刘军育)

产品推广冷启动(百度高级运营朱云彤)

活动运营之如何策划线上活动(前拉勾网运营经理王珍)

社区运营(网易高级运营经理江华)

新媒体运营(暴风科技新媒体高级公关经理崔雪梅)

用户运营(猫眼电影产品运营专家韩叙)

从零开始构建数据体系(迅雷分析师唐裕风)

QQ音乐数字专辑的运营分享(屈芳)

 

产品就业指导(腾讯SNG高级招聘经理成吉祥)

 

posted on 2017-01-23 12:24  馬小妹  阅读(487)  评论(0编辑  收藏  举报

/* * 功能: 创建一个可以让页面滚动到顶部的按钮, 常见于各种社交网站的微博列表. * 备注: DOM被设置成了浮动的, 用户可以自己设定位置, 传入right, bottom参数即可 还可以配置滚到条到多高的时候会显示插件图标. */ (function ($) { $.fn.scrolltop = function (options) { var opts = $.extend({}, $.fn.scrolltop.defaults, options); var run2top = function () { var scrollDist = $(window).scrollTop(); if (scrollDist > 0) { scrollDist -= opts.topSpeed; scrollDist = Math.max(scrollDist, 0); $(window).scrollTop(scrollDist); setTimeout(run2top, 1); } }; return this.each(function () { var $this = $(this); $this.css("opacity", "0.3"); $this.css("background", "url('u=4251301862,936291425&fm=214&gp=0.jpg') no-repeat"); $this.css("width", opts.width); $this.css("height", opts.height); $this.css("position", "fixed"); $this.css("right", opts.right); $this.css("bottom", opts.bottom); $this.hover( function () { $(this).css('opacity', '1.0'); }, function () { $(this).css('opacity', '0.5'); } ); $this.click(function () { //$(window).scrollTop(0); run2top(); }); $(window).scroll(function () { var scrollDist = $(window).scrollTop(); if (scrollDist >= opts.heightThreshhold) { //当滚动条离顶部超过阈值的时候, 就显示 $this.css("display", "block"); } else { $this.css("display", "none"); } }); }); }; $.fn.scrolltop.defaults = { heightThreshhold: 1000, width: "50px", height: "50px", right: "8%", bottom: "30px", topSpeed: 50 }; })(jQuery);