整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:

"俺不能死”="

"俺不能死”="Ambulance",这个中文拆音法可好用了!

克英语,专属外教一对一情景式电话教学,职场人士和妈妈们首选英语教育机构,十年品质保证。

你已经学了多少年英语?

-10年8年了吧。


每天用英文多吗?

-不多。


看到英文电影,你可以不用看中文字幕吗?

-你说笑的吧(不行)。

遇到外国人say hi,你能成功对话吗?

-问候三大宝:Hi?Thank you!And you?


工作时,你能够无压力做presentation吗?

-What?给我一周时间准备下......




发音难?不会读?这些英语口语疑难杂症,是中国人的通病。

那就搬好小板凳,必叔给大家准备了最funny、最逗比的5个单词发音方法,让你轻松记单词!

1

A

mbulance

“俺不能死”

['?mbj?l(?)ns]

翻译:救护车

例句:

How can I call an ambulance?

我如何能叫到救护车?

趣味key:用中文发音法把单词拆开,"am"=俺",bu"=不",lan"=能",ce"=死,作为承载救死扶伤责任的“救护车”都来救你了,你压根肯定挂不了。



2

Pest

“拍死它”

[pest]

翻译:害虫

例句:

And move over bedbugs, there's a new pest in town.

先撇开臭虫不说,现在城镇里又出现一种新害虫。

趣味key:你肯定对“小强(蟑螂)”“苍蝇”“蚊子”这些害虫恨之入骨,请问你还有什么举动?当然是"pe"=拍,"s"=死,"t"=它!!



3

Bale

“背噢”

[be?l]

中文解释:灾祸

例句:

Panels are seven or eight bales high and one bale thick.

墙板有七、八包稻草那么高和一个包那么厚。

趣味key:运气很背哦(不好)!"ba"=包袱、"le"=呢 :背了一大包东西真不幸痛苦呢!



4

Aboard

“爱泊的”

[?'b??d]

翻译:在船上,上(船,飞机,车)

例句:

There is a library aboard.

舰上有一个图书馆。

趣味key:board是指木板的意思,古时候的船也就是由木板造成的。"a"=爱,"board"=漂泊的人。发音想成:“爱泊的”(爱到处漂泊的人,还不赶紧上船)。



5

Absent

“挨不上的”

[??bs?nt;(for v.)?b?sent]

翻译:不在的,缺席的

例句:

Tom is absent on illness.

汤姆因病缺席。

趣味key:ab作为前缀表示“离开”,sent表示“送(被送走了,离开了,所以不在了)”发音想成“挨不上的”(缺席了,你肯定两个位置都没有的上,何况还想挨别人,挨个空气吧~)。



1、【资料大礼包】

关注必克英语头条号,私信发送暗号“英语资料”给小编,即可获得小编精心整理的20G英语学习资料,包括:30篇英语美文的文字+音频;必克独家外教发音教学视频;原汁地道的美式发音与俚语资料。

2、【免费外教课】

学了那么久英语,你知道自己是哪个水平的吗?马上点击左下方【了解更多】,免费测试一下吧!

载DOM

以浏览器装载文档为例,在页面加载完毕后,浏览器会通过javaScript为DOM元素添加事件,在常规的javaScript代码中,通常使用window.onload方法,而在jQuery中,使用的是$(document).ready(function(){})方法,该方法是事件模块中比较重要的一个函数,可以极大地提高Web应用程序的响应速度。jQuery就是用$(document).ready()代替传统javaScript的window.onload方法,通过使用该方法,可以在DOM载入就绪时就对其进行操作并执行它所绑定的函数,在使用过程中需要注意$(document).ready()方法和window.onload方法之间的细微区别,区别如下:

  • 执行时机

$(document).ready()和window.onload有相似的功能,但在执行时机方面是有区别的。window.onload是在网页中所有的元素(包括元素的所有关联文件)完全加载到浏览器之后才执行,而通过$(document).ready()方法注册的事件处理程序,在DOM完全就绪时就可以被调用

举一个例子,有一个大型的图库网站,为网页中所有图片添加某些行为,如单击图片后隐藏或显示,如果用window.onload来处理,那么用户必须等到每一幅图片都加载完毕才可以进行操作,如果使用$(document).ready()方法来进行设置,只要DOM就绪即可操作,不需要等待所有图片下载完毕,很显然,把网页解析为DOM树的速度要比把页面中所有关联文件加载完毕的速度快的多。

  • 多次使用

在页面中可以多次使用$(document).ready()去绑定加载执行事件,绑定事件顺序执行。

  • 简写方式

$(document).ready(function(){ });可以简写为$(function(){ });,另外,$(document)也可以简写为$(),当$()不带参数时,默认参数是“document”,因此还可以简写为$().ready(function(){ });

事件绑定

在文档装载完成后,如果打算为元素绑定事件来完成某些操作,则可以使用()方法来对匹配元素进行特定事件的绑定,on()方法的调用格式为:

on(events,[selector],[data],fn)

说明如下:

第1个参数是事件类型,类型包括:blur、focus、load、resize、scroll、unload、click、dblclick、mousedown、mouseup、mousemove、mouseover、mouseout、change、select、submit、keydown、keypress、keyup、和error等,当然也可以是自定义名称。

第2个参数为可选参数,一个选择器字符串用于过滤器的触发事件的选择器元素的后代。如果选择的< null或省略,当它到达选定的元素,事件总是触发。

第3个参数为可选参数,作为event.data属性值传递给事件对象的额外数据对象。

第4个参数则是用来绑定的处理函数。

  • 基本效果

下面通过一个示例来了解on()方法的用法,假设网页中有一个常见问题解答,单击“标题”链接将显示内容。

HTML代码如下:

示例DOM

按照需求,需要完成以下几个步骤。

  1. 等待DOM装载完毕。
  2. 找到“标题”所在元素,绑定click事件。
  3. 找到“内容”元素,将“内容”元素展示。

根据分析的步骤,可以轻易地写出如下jQuery代码:

$(function(){
	$("#panel h5.head").on("click",function(){
		$(this).next().show();//$(this).next()获取"内容"元素
	});
});
  • 加强效果

在上面的例子中,单击“标题“显示出“内容”;再次单击“标题”,“内容”并没有任何反应,现在需要加强效果:第2次单击“标题”,“内容”隐藏;再次单击“标题”,“内容”又显示,两个动作循环出现,为了实现这个功能,需要经过以下几个步骤:

  1. 等待DOM装载完毕。
  2. 找到“标题”所在元素,绑定click事件。
  3. 找到“内容”元素,如果“内容”元素是显示的,则隐藏,否则显示。

为了判断元素是否显示,可以使用jQuery中的is()方法来完成,代码如下:

$(function(){
	$("#panel h5.head").on("click",function(){
		if($(this).next().is(":visible")){ //如果"内容"显示
			$(this).next().hide();
		} else {
				$(this).next().show();
		}
	});
});

通过以上的修改,当反复单击“标题”链接时,“内容”会在隐藏和显示两种状态下切换。

  • 改变绑定事件的类型

上面的例子中,给元素绑定的事件类型是click,当用户单击的时候会触发绑定的事件,执行事件的代码,现在把事件类型换成mouseovermouseout,即当光标滑过的时候就触发事件,需要进行以下几步操作:

  1. 等待DOM装载完毕。
  2. 找到“标题”所在的元素,绑定mouseover事件。
  3. 找到“内容”元素,显示内容。
  4. 找到“标题”所在元素,绑定mouseout事件。
  5. 找到“内容”元素,隐藏内容。

根据分析的步骤,可以写出如下代码:

$(function(){
	$("#panel h5.head").on("mouseover",function(){
		$(this).next().show();
	}).on("mouseout",function(){
		$(this).next().hide();
	});
});
  • 简写绑定事件

像click、mouseover和mouseout这类事件,在程序中经常会使用到,jQuery为此也提供了一套简单的写法,简单写法和on()方法类似,实现的效果也相同,唯一的区别是能够减少代码量,简写如下:

$(function(){
	$(on#panel h5.headon).mouseover(function(){
		$(this).next().show();
	}).mouseout(function(){
		$(this).next().hide();
	});
});

合成事件

jQuery有两个合成事件——hover()toggle()方法,类似前面讲过的ready()方法,这两个方法都属于jQuery自定义的方法

  • hover()方法

hover()方法的语法结构为:

hover(enter,leave);

hover()方法用于模拟光标悬停事件当光标移动到元素上时,会触发指定的第1个函数(enter);当光标移除这个元素时,会触发指定的第2个函数(leave)

将上面的例子改写成hover()方法,jQuery代码如下:

$(function(){
	$("#panel h5.head").hover(function(){
		$(this).next().show();
	},function(){
		$(this).next().hide();
	});
});
  • toggle()方法

toggle()方法的语法结构为:

toggle(fn1,fn2,…fnN);

toggle()方法用于模拟鼠标连续单击事件,第1次单击元素,触发指定的第1个函数,当再次单击同一元素时,则触发指定的第2个函数,以此类推,直到最后一个,然后循环

$(function(){
	$("#panel h5.head").toggle(function(){
		$(this).next().show();
	},function(){
		$(this).next().hide();
	});
});

toggle()方法在jQuery中还有另外一个作用:切换元素的可见状态,如果元素是可见的,单击切换后则为隐藏的,如果元素是隐藏的,单击切换后则为可见的。

若感觉对您有用,可以关注并转发,您的关注是对我莫大的支持!

关注并转发后私信“jQuery基础材料”获取线下资料,包括完整基础资料、chm文档、示例代码及其他参考资料。

上一章:jQuery基础回顾——jQuery中的DOM操作

下一章:jQuery基础回顾——事件冒泡、移除事件、模拟事件

9.Sorry to trouble you. 对不起给你找麻烦了。 40.No trouble at all.没有一点儿麻烦。

41.football team 足球队 42.play against 对赛

43.a good player 一名好远动员 44.be very exciting 令人兴奋的

45.the first half of the match 上半场,前半场 46.pass sth. to sb 把某物递给某人

47.run very fast 跑的很快 48.get into the goal (把球)射进球门

49.be very excited (人)感到兴奋 50.the result of the match 比赛结果

51.invite sb. to a big dinner 邀请某人就餐

52.near the end of the match 比赛快要结束 53.catch the ball 接住球

54. pass the hospital 路过医院 55.pass sb.sth.把某物递给某人

56.pass the maths exam 数学考试及格 57.a famous play 著名戏剧

58. put on a short play 上映短剧 59. get longer and longer 天变得越来越长

60. get dark 天黑 61.get some letters from my friends 收到朋友的来信

62. get the news 得到消息 63. get to the station 到达车站

64.get home 到家 get there 到达哪儿 65.have got 有

66.get on well with sb.和某人相处的很好 67.the right answers 正确答案

68.both her parents 她的父母双方 69.both of them 他们中两个人

70.on both sides of the street 在马路两旁 71.in both hands 在双手里 用双手

72.move over to the table 到桌前就餐

73.prepare so much delicious food 准备很多丰盛食物

74.help oneself to sth. 自便,随便吃

75.a team from a country school 一支来自农村的球队(运动员)

76.1ook like看起来像 77.one of the boys 男孩中一个

78.a boy in a dirty T-shirt 一个穿着脏T恤衫的男孩 79.stop the passs 阻止传球

80.turn to shoot 转过来投球 81.get two more points 又得了两分

82.in a minute 过了一会儿 83.be all over 全场结束

84.a little better 好一点儿 85.learn a more important lesson 上了一节更重要的课

86.stay in bed for another two days 再跟床上呆两天

87.one by one 一个一个 88.about school life in England 关于英国学校生活

89.wear a new dress at the party 在聚会(上)穿一条新裙子

90.work by day and study by night (在)白天工作晚上学习

9t.by this time tomorrow 不迟于明天这个时间

92.fly from Beijing to New York 从北京飞到纽约

93.go to school from Monday to Friday 从周一到周五上学

94.three weeks from today 今天算起还有三个星期

95.live far away from the school 住在离学校很远的地方

96. come from=be from 来自于

97.get a letter from my friend 收到我的朋友一封信

98. like some more fish 喜欢再吃一些鱼 99. thank sb. for …为…而感谢某人

100.go to the hill with sth. 带着东西上山 101.come to the top of the hill 来到山顶

101. stay here 呆在这儿 102.a good place 一个好地方

103.go faster and faster 走得越来越快 105.more and more children 越来越多的孩子

106.come along=come with sb.跟上来 107.race down the hill 比赛跑到山下

108.skate on the lake 在湖上滑冰 109.come on 跟(某人)来 快点、加油

110.put sth. under the tree 把某物放在树下 111.just then 正在那时

112.come off 脱离开 113.go off 走开

114. a good lake for skating 适合滑冰的湖

115.be ready for=get ready for prepare for 为…做准备

116.run back up the hill 跑回到山上 117.look out=be careful 当心,小心

118.go over复习功课,走过去 119.run down the hill 跑下山

120.go on skating over the lake 在湖上继续滑冰 121.go round and round 一圈一圈的走

122.come back to sb. 返回到某人处 123.come up to sb.向某人那里走来

124.as…as 与…一样 125.so…that 如此…以至

126.too…to 太…以至于不能… 127.on Friday afternoon 在星期五下午

128.turn right 向右拐 129.and so on 等等

130.need a lot of things 需要很多东西

131.It's time for sth. (for+n)=It's time to do sth. 该…时间了

132.study hard to get ready for 努力学习为…作准备

133.study hard at English 努力学习英语

134.stop sth. 停止某事 拦住某物 135.stop to do sth. 停下来再做某事

136.stop doing sth.停止做某事 137.not at a11 一点都不

133.stop sb. from doing sth. 阻止某人做某事 139.wait for sth. (sb) 等(车,人)

140.several people 几个人 141.go back home on foot 步行(返)回到家

142.go into the room quietly 静静的走进屋 143.become a doctor 成为一名医生

144.finish sth. 完成某事 finish doing sth.做完某事

145.at about seven this morning 今天早晨大约七点钟

146.half an hour 半小时 147.an hour and a half 一个半小时

148.play football 踢足球 149.p1ay the piano 弹钢琴

150.pass…on 把…传递给 151.fall into the lake 跌入湖中

152.aIl the children 所有的孩子们 153.go round the lake 围绕这湖走

154.look for寻找 155.call again and again (再三)反复叫喊

156. go out to walk on the thin ice 出去在薄冰上走 157.as well as 除…之外

158.get to the road 到达公路

159.call out to sb. 对某人大声的叫喊 160. get sb. out 把某人救出来

161.try to do sth. 尽力做某事 162.get a long ladder 拿来一架长梯子

163.run along the road 沿着马路跑 164.a big house 一间大的房子

165. go into the house 走进那间房子 166.come out with sth.拿着某物出来

167.hurry up 赶紧 168.go back to the lake with sth. 拿着某物返回到湖边

169. put the ladder down 把梯子放倒 170.look round 向四周看

171. go slowly along the ladder 沿着梯子缓慢的爬行 172.in the hole 在洞里

173.as soon as 一...就... 174.wet through 全湿透了

175. get hold of the ladder 抓住梯子 176.start pulling sth. back 开始住回拉

177.go home 回家 178.be late for 晚了,迟到

179. get slowly off the ladder 从梯子上缓慢的下来 180.help each other 互相帮助

181.heIp sb.a lot in learning English 在英语学习方面帮助某人很多

182.carry these boxes into the classroom 把这些箱子搬运到教室里

183.clearn the classroom 打扫教室

184.look at the colorful lights over your head 看你头上的彩灯

185.fly over the mountain 飞越过山顶

186.all over the world 遍及世界 187.over one hundred people 一百多人

188.rush out of the classroom 冲出教室

189.plant many trees round the school 围绕学校种了许多树

190.look after 照顾 191. look at 看

192.look out of the window 向窗外看 193.look worried 看上去很焦急

194.look up the word in the dictionary 查字典

195.develop into a modern city 发展成一个现代化城市

196.in the centre of Beijing 在北京市中心

197.in the past在过去 198. declare the founding of the new China 宣布新中国成立

199.have a wonderful view of the city 拥有—个美丽的城市风景

200.stand on top of the hill 站在山顶 201. 7,300 seven thousand and three hundred

202.4,304 four thousand, three hundred and four

203.56,432 fifty-six thousand,four hundred and thirty-two

204.768,321 seven hundred and sixty—eight thousand, three hundred and twenty-one

205.1,768,321 one million,seven hundred and sixty-eight thousand,three hundred and twenty-one

206.Bejing is capital of the People's Republic of Republic of China.北京是中华人民共和国首都

207.on October the first, nineteen forty-nine 在1949年10月1日

208.to the north of位于…北部 209.at a quarter past seven 七点一刻

210.talk about his past 谈论关于他的过去

211.go to see a film with his parents 和他的父母一起去看电影

212.at the headmaster's office 在校长办公室 213.almost a year 几乎一年

214.the classroom of C1ass Five,Grade Three 三年级五班教室

215.three of the students in this class 这个班的三名学生

216.a piece of cake 一块蛋糕 217.a telephone number 电话号码

218.be glad to see sb.高兴见到某人

219.speak to sb. in such a way 用这种方法对某人讲话

220.come in with some test papers in one's hand 手里拿着一些试卷走进教室

221.one of the largest squares 最大的广场之一

222.in the world 在世界上 223.on the west side of the square 在广场的西部

224.in the centre of the square 在广场中央 225.the afternoon of Monday 星期一下午

226.especially on holidays 特别在假日 227.most of them 他们中许多人

228.on fine days 在晴天,在好天 229.take pictures 照相

230.from east to west 从东到西 231.far from 遥远,很远

232.full of 充满 233.agree with sb.同意某人意见

九年级英语第十二单元学案(1)

一、疑点难点破解

1….it’s okay if you are a bit late.如果你稍迟一点还行。

疑点:a bit在此作状语修饰late,表示“稍微,一点儿”,可以与a little互用,既可以修饰形容词、副词的比较级也可以修饰原级。

如:If you run a little/a bit more quickly, you can catch the bus.如果你再跑得快一点儿的话,你就赶上公交车了。

难点:a bit of与a little 可互相换用,用于修饰不可数名词。但要注意not a bit与not a little的区别,前者表示“一点也不”,而后者表示“许多、很、不只一点点”。

如:He had a bit of /a little bread for his breakfast.他早上吃了点儿面包。

-Are you tired?

-No, not a bit.你累吗?一点也不累。

He gives me not a little trouble.他给我带来许多麻烦。

2. Thanks for your message.谢谢你的来信。

疑点:thanks for“为……而感谢”。如:Thanks for giving me such a nice present.谢谢你送我这么精美的礼物。

难点:thanks to表示“由于,幸亏”。如:Thanks to the teacher’s help,we finished the work on time.多亏老师的帮助,我们按时完成了工作。

3. In Switzerland,it’s very important to be on time.在瑞士,准时是很重要的。

疑点:it用作形式主语,代替了真正的主语to be…这一不定式,不定式可以做主语,但是又往往用it作形式主语来代替。

如:To help others is good when they are in trouble.=It’s good to help others when they are in trouble.

帮助那些处于麻烦当中的人是好事。

难点:it还可以用作形式宾语,代替了真正的宾语to do sth.…

如:本单元出现了这样的句子:I have to say,I find it difficult to remember everything…不得不承认,我发现记住一切东西是很困难的…

4.Where I’m from,we’re pretty relaxed about time.我所在的地方,对时间是相当宽松的。

疑点:pretty是副词意思为相当地,颇。如:He speaks English pretty well. 他英语讲得很好。

难点:和pretty相似的词还有fairly,rather,quite,用法有一定的区别。

pretty多用于口语;fairly多修饰好的一面的形容词;rather可修饰不好的或好的一面的形容词;quite多修饰好的一面的形容词和无等级之分的形容词。

如:It’s fairly(quite)interesting(warm,good,etc.).这很有趣(很暖和,很好等)。

同步练习

一、单向选择

1. _________useful work they have done!

A.What B.How C.What a D.What an

2. His school backpack_________ by a woman ten minutes ago.

A.took awayB.was taken awayC.were take awayD.had taken away

3 .He_________ in his English Test Paper. His teacher was very angry with him.

A. makes some mistakesB. make a mistake

C. made few mistakesD. made many mistakes

4. The first thing is_________ the teacher.

A.greeting B.to greet C.greeted D.being greeted

5. We never visit a friend’s house without________

A.call B.to callC.calling D.calls

九年级英语第十二单元学案(2)

1.It’s rather cold(bad,difficult,etc.).真冷(真糟,真难等)。

The bottle is quite empty.这瓶子完全空了。

注:1)fairly,quite与rather三者程度上差异如下:not good→fairly good→quite good→rather good→very good不好→还好→不错→相当不错→很好

2)fairly和rather同是修饰一个词,意思上有区别。请比较:

fairly easy 较容易(难度适宜)

rather easy 太容易(缺乏难度)

3)rather和quite可放在动词之前。如:(1)I rather like this colour.我倒很喜欢这颜色。(2)She quite like him.她确实喜欢他。

4)rather和quite都可和名词连用,若无形容词都必须放在冠词前。

如:(1)He made quite an effort,but he failed in the end.她做了很大努力,可最终还是没成功。

(2)It’s rather a shame that they have to work on weekends.他们周末还要工作,这有点不公平。

5. You’re not supposed to eat anything with your hands except bread,not even fruit!除了面包,你不可以用手吃任何东西,即使是水果也不行。

疑点:except 除了……之外,但不包括在内,是介词。如:He gets up early every day except Sunday.除星期日外他每天早起。

难点:besides作为介词,意为除了……之外还有……,而except则是除了……之外别无其他。

如:Except Tom we all went to the Great Wall.除了汤姆之外,我们所有人都去长城了。(汤姆一人没去)

Besides Tom Li Lei went to the Great Wall.除了汤姆之外还有李蕾去长城了。(汤姆和李蕾都去了。)