先看題,別看答案試下吧 ~_~javascript
一、下面的代碼輸出的內容是什麼?css
function O(name){
this.name=name||'world';
}
O.prototype.hello=function(){
return function(){
console.log('hello '+this.name)
}
}
var o=new O;
var hello=o.hello();
hello();
複製代碼
分析:
一、O類實例化的時候賦值了一個屬性name,默認值爲world,那麼在實例化的時候並未給值,因此name屬性爲world
二、O類有一個原型方法hello,該方法實際上是一個高階函數,返回一個低階函數,精髓就在這個低階函數中的this,
注意這裏的低階函數實際上是在window環境中運行,因此this應該指向的是window
複製代碼
因此個人答案是:'hello undefined'(但這個答案是錯誤的,哈哈)html
圈套:卻不知原生window是有name屬性的,默認值爲空
複製代碼
因此正確答案應該是:hellojava
二、給你一個div,用純css寫出一個紅綠燈效果,按照紅黃綠順序依次循環點亮(無限循環)瀏覽器
<div id="lamp"></div>
複製代碼
/* 思路: 總共三個燈,分別紅黃綠,要一個一個按順序點亮,咱們能夠這樣暫定一個循環須要10秒中,每盞燈點亮3秒, 那麼在keyframes中對應寫法就以下所示(紅燈點亮時間爲10%--40%,黃燈點亮時間爲40%--70%,綠燈點亮時間爲70%--100%) */
@keyframes redLamp{
0%{background-color: #999;}
9.9%{background-color: #999;}
10%{background-color: red;}
40%{background-color: red;}
40.1%{background-color: #999;}
100%{background-color: #999;}
}
@keyframes yellowLamp{
0%{background-color: #999;}
39.9%{background-color: #999;}
40%{background-color: yellow;}
70%{background-color: yellow;}
70.1%{background-color: #999;}
100%{background-color: #999;}
}
@keyframes greenLamp{
0%{background-color: #999;}
69.9%{background-color: #999;}
70%{background-color: green;}
100%{background-color: green;}
}
#lamp,#lamp:before,#lamp:after{
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #999;
position: relative;
}
#lamp{
left: 100px;
animation: yellowLamp 10s ease infinite;
}
#lamp:before{
display: block;
content: '';
left: -100px;
animation: redLamp 10s ease infinite;
}
#lamp:after{
display: block;
content: '';
left: 100px;
top: -100px;
animation: greenLamp 10s ease infinite;
}
複製代碼