Ⅰ.听句子,从A-E中选出与所听内容相符的图片。听完每句话后,你将有5秒钟的时间来回答有关小题和阅读下一小题。每句话读两遍。
My father is a doctor. He works in a big hospital.
What a lovely dolphin! It looks like a dancer!
Oh, my God, I left my bag in the taxi.
Look at the sign! You can’t turn right.
The weekend is coming. What shall we do?
Ⅱ.听短对话,从题中所给的A、B、C三个选项中选出能回答所给问题的最佳选项。听每段对话前,你将有5秒钟的时间来回答有关小题和阅读下一小题。每段对话读两遍。
W: Good morning. The Great Wall Hotel!
M: Good morning. I want to book a double room from June 23-25.
W: Sorry, I’m late.
M: Oh, it’s two o’clock now. The meeting has been on for twenty minutes.
$.fn.smartFloat = function() {
var position = function(element) {
var top = element.position().top, pos = element.css("position");
$(window).scroll(function() {
var scrolls = $(this).scrollTop();
if (scrolls > top) {
if (window.XMLHttpRequest) {
element.css({
position: "fixed",
top: 0
});
} else {
element.css({
top: scrolls
});
}
}else {
element.css({
position: "relative",
});
}
});
};
return $(this).each(function() {
position($(this));
});
};
//绑定
$("#container").smartFloat();