Metadata
Title
“我是读书人”读书经验分享会第十二期:动静之间 体悟人生
Category
general
UUID
7bf86b33e384431ea677a03c14361892
Source URL
https://libmonth.lib.tsinghua.edu.cn/dswhy2022/info/1021/1413.htm
Parent URL
https://libmonth.lib.tsinghua.edu.cn/dswhy2022/
Crawl Time
2026-03-10T06:58:04+00:00
Rendered Raw Markdown

“我是读书人”读书经验分享会第十二期:动静之间 体悟人生

Source: https://libmonth.lib.tsinghua.edu.cn/dswhy2022/info/1021/1413.htm Parent: https://libmonth.lib.tsinghua.edu.cn/dswhy2022/

2021

“我是读书人”读书经验分享会第十二期:动静之间 体悟人生

“我是读书人”读书经验分享会第十二期(4月23日19:00)

动静之间 体悟人生

——论读书与跑步之联结

清华大学图书馆读者中,有不少真正的读书人,读书一直是他们生活中不可或缺的部分。丰富踏实的阅读经历,让他们练成关于阅读的独门绝技和真知灼见。图书馆不定期举办“我是读书人”读书经验分享会,帮助读者开启神圣的阅读之旅。

第十二期“我是读书人”读书经验分享会,邀请清华大学环境学院2016级直博生童心同学**主讲“动静之间 体悟人生——论读书与跑步之联结”

本期“我是读书人”的主讲嘉宾将与我们分享他与“读书和跑步”之间的生动故事和深刻哲思。请跟随主讲人一起领略动静间的精彩人生。

间: 2022423日(周六)晚19:00-21:00

: 校图书馆西馆(逸夫馆)303会议室

主讲人:童心

●  清华大学环境学院2012级本科生、2016级直博生

●  发表4篇SCI一作,总影响因子33

●获过环境学院征文二等奖,清华大学优良毕业生、校级综合奖学金

●北京市优秀团员

●曾担任清华大学新生体育助教

●  中长跑二队队员,马拉松国家二级运动员,Runislove跑团创始人兼跑步教练,国家职业健身教练。

●  马杯5000m、10000m乙组冠军,校园迷你马拉松冠军,曾代表清华参加全国大学生高校百英里接力赛总决赛、首都高校田径比赛等,也曾参加过冬泳、长距离越野赛、铁人三项等。

欢迎大家扫描下方二维码报名

\

\

提前报名,可预留座位,电话:62788937。

校图书馆  

2022年4月19日

\

中国 北京 海淀区 清华大学图书馆 100084 电话:62782137 传真:62781758

联系我们 1111

图书馆微信公众号

版权所有:清华大学图书馆 版权声明

$(function(){ $(".img_vsb_content").click(function(){ var _this = $(this);//将当前的pimg元素作为_this传入函数 imgShow("#outerdiv", "#innerdiv", "#bigimg", _this); }); }); function imgShow(outerdiv, innerdiv, bigimg, _this){ var src = _this.attr("src");//获取当前点击的图片元素中的src属性 $(bigimg).attr("src", src);//设置#bigimg元素的src属性 /*获取当前点击图片的真实大小,并显示弹出层及大图*/ $("").attr("src", src).load(function(){ var windowW = $(window).width();//获取当前窗口宽度 var windowH = $(window).height();//获取当前窗口高度 var realWidth = this.width;//获取图片真实宽度 var realHeight = this.height;//获取图片真实高度 var imgWidth, imgHeight; var scale = 0.8;//缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放 if(realHeight>windowH*scale) {//判断图片高度 imgHeight = windowH*scale;//如大于窗口高度,图片高度进行缩放 imgWidth = imgHeight/realHeight*realWidth;//等比例缩放宽度 if(imgWidth>windowW*scale) {//如宽度扔大于窗口宽度 imgWidth = windowW*scale;//再对宽度进行缩放 } } else if(realWidth>windowW*scale) {//如图片高度合适,判断图片宽度 imgWidth = windowW*scale;//如大于窗口宽度,图片宽度进行缩放 imgHeight = imgWidth/realWidth*realHeight;//等比例缩放高度 } else {//如果图片真实高度和宽度都符合要求,高宽不变 imgWidth = realWidth; imgHeight = realHeight; } $(bigimg).css("width",imgWidth);//以最终的宽度对图片缩放 var w = (windowW-imgWidth)/2;//计算图片与窗口左边距 var h = (windowH-imgHeight)/1.8;//计算图片与窗口上边距 $(innerdiv).css({"top":h, "left":w});//设置#innerdiv的top和left属性 $(outerdiv).fadeIn("fast");//淡入显示#outerdiv及.pimg }); $(outerdiv).click(function(){//再次点击淡出消失弹出层 $(this).fadeOut("fast"); }); }

var nav = { menuBtn: $('.menuBtn'), nav: $('.js-nav'), menu: $('.nav'), menuLi: $('.nav li'), menuLink: $('.nav li > a'), init: function() { var _this = this; this.menuBtn.append(''); this.menuBtn.on('click', function() { $(this).toggleClass('open'); _this.nav.toggleClass('open'); }); this.resize(959); }, resize: function(width) { this.menuLink.off('click'); this.menuLi.off('mouseenter mouseleave'); this.menu.find('.sub').stop(true, true).slideUp(0); if ($(window).innerWidth() < width) { this.menuLi.off('mouseenter mouseleave'); this.menuLink.on('click', function() { if ($(this).siblings('.sub').length) { $(this).siblings('.sub').stop(true, true).slideToggle('fast').parent().siblings().find('.sub').stop(true, true).slideUp('fast'); return false; } }) } else { this.menuBtn.removeClass('open'); this.nav.removeClass('open'); this.menuLi.on('mouseenter', function() { if ($(this).find('.sub').length) { $(this).find('.sub').stop(true, true).slideDown('fast'); } }); this.menuLi.on('mouseleave', function() { $(this).find('.sub').stop(true, true).slideUp('fast'); }); } } }; nav.init(); var resizeTimer = null; $(window).on('resize', function() { if (resizeTimer) { clearTimeout(resizeTimer); } resizeTimer = setTimeout(function() { nav.resize(959); }, 100); }); $(window).on('scroll', function() { var _top = $(window).scrollTop(); if (_top > 10) { $('.header').addClass('on'); } else { $('.header').removeClass('on'); } });