《清华大学荐读书目》清华师生共读经典--曹莉老师导读《荒原》
Source: https://libmonth.lib.tsinghua.edu.cn/dswhy2023/info/1095/1724.htm Parent: https://libmonth.lib.tsinghua.edu.cn/dswhy2023/a_qhdxjdsm_qhssgdjdxlspfb.htm
《清华大学荐读书目》清华师生共读经典--曹莉老师导读《荒原》
艾略特在《荒原》中重点展现了一种“荒原意识”,所谓“荒原意识”就是对西方文明的幻灭。正如“过去因现在而改变,就像现在被过去所指引”。通过今昔对比,来表达对西方文明的悲观和焦虑。《荒原》体现了艾略特对世界、对人生、对文化、对文明以及对人类生存的一个比较深层次的洞见。推荐此书让读者能够在人类文明的长河中对西方文明乃至整个人类文明的当下和未来走向,有一个必要的预期。\
showVsbVideo("/__local/9/2C/55/FB82196B01CFB5CC4A50E84FF05_13BAF614_4A03AD7.mp4?e=.mp4","height=\"540\"","width=\"960\"","","float:none","false");
\
曹莉 剑桥大学博士,清华大学人文学院外文系长聘教授、博士生导师, 欧美文学研究中心主任。历任校务委员会委员、新雅书院副院长兼教学委员会主任、外文系副系主任。兼任国际英语语言文学大学教授协会(IAUPE)联席主席、联合国教科文现代语言文学国际联盟(FILLM)副主席、中国外国文学学会英国文学研究分会副会长、英语文学研究分会副会长、第八届国务院学科评议组成员。主要著作和编著有:《史碧娃克》《永远的乌托邦》《大学理念与人文精神》《文明的冲突与梦想》《艺术人文》《文学艺术的瞬间与永恒》《新旅程》《剑桥批评:中国与世界》《永不终结的契合:王佐良纪念文集》《游走于文明之间:新雅海外游学札记》等。
中国 北京 海淀区 清华大学图书馆 100084 电话:62782137 传真:62781758
图书馆微信公众号
版权所有:清华大学图书馆 版权声明
$(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'); } });