2019-05-21DAY7作業(yè)

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{padding: 0;margin: 0;}
            #d1{}
            #d2 img{margin: 18px;}
        </style>
    </head>
    <body>
        <div id="d1">
            <img src="img/picture-1.jpg"/>
        </div>
        <!--<img src="img/picture-1.jpg"/>-->
        <!--<img src="img/picture-2.jpg" />-->
        <!--<img src="img/picture-3.jpg" /-->
        <div id="d2">
            <img class="i1" src="img/thumb-1.jpg"/>
            <img class="i1" src="img/thumb-2.jpg" />
            <img class="i1" src="img/thumb-3.jpg" />
        </div>
    </body>
</html>
<script type="text/javascript">
    d1 = document.getElementById('d1')
    imgs = document.getElementsByClassName('i1')
    for (x in imgs){
        if (x=='length'){
            break
        }
        
        if(x==0){
            
            imgs[x].onmouseover = function(){
                d1.innerHTML=''
                img_2 = document.createElement('img')
                img_2.src = "img/picture-1.jpg"
                d1.appendChild(img_2)
                
            }
        
        }
        if(x==1){
        imgs[x].onmouseover = function(){
                d1.innerHTML=''
                img_2 = document.createElement('img')
                img_2.src = "img/picture-2.jpg"
                d1.appendChild(img_2)   
        }
    }
        if(x==2){
            imgs[x].onmouseover = function(){
                d1.innerHTML=''
                img_2 = document.createElement('img')
                img_2.src = "img/picture-3.jpg"
                d1.appendChild(img_2)   
        }
        }
        }
    
    
</script>
QQ圖片20190521205717.png
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{margin: 0;padding: 0;}
            button:focus{outline: none;}
            button{height: 15px;width: 30px;border: 0;background-color: black;;cursor: pointer;}
        </style>
    </head>
    <body>
        <div id="d1" align="center" >
            
        
        <img id="img1" src="img/slide-1.jpg"/>
        <!--<img src="img/slide-2.jpg" alt="" />-->
        <!--<img src="img/slide-3.jpg" alt="" />-->
        <!--<img src="img/slide-4.jpg" alt="" />-->
        </div>
        <div id="d2" align="center">
            
            <button id="b1"></button>
            <button id="b2"></button>
            <button id="b3"></button>
            <button id="b4"></button>
        </div>
    </body>
</html>
<script type="text/javascript">
    b1 = document.getElementById('b1')
    b2 = document.getElementById('b2')
    b3 = document.getElementById('b3')
    b4 = document.getElementById('b4')
    
    d1 = document.getElementById('d1')
    img1 = document.getElementById('img1')
    x=0
    t1 = setInterval(function(){
        
        x++
        
            
            b1.style.backgroundColor='blueviolet'
            b2.style.backgroundColor='black'
            b3.style.backgroundColor='black'
            b4.style.backgroundColor='black'
        
        if(x==2){
            b1.style.backgroundColor='black'
            b2.style.backgroundColor='blueviolet'
            b3.style.backgroundColor='black'
            b4.style.backgroundColor='black'
        }
        if(x==3){
            b1.style.backgroundColor='black'
            b2.style.backgroundColor='black'
            b3.style.backgroundColor='blueviolet'
            b4.style.backgroundColor='black'
        }
        if(x==4){
            b1.style.backgroundColor='black'
            b2.style.backgroundColor='black'
            b3.style.backgroundColor='black'
            b4.style.backgroundColor='blueviolet'
        }
        
        if (x==5){
            x=1
        }
        console.log(x)
        img1.src =`img/slide-${x}.jpg`
    },2000)
    
    b1.onclick = function(){
        img1.src = "img/slide-1.jpg"
        b1.style.backgroundColor='blueviolet'
        b2.style.backgroundColor='black'
        b3.style.backgroundColor='black'
        b4.style.backgroundColor='black'
        x=1
    }
    b2.onclick = function(){
        img1.src = "img/slide-2.jpg"
        b1.style.backgroundColor='black'
        b2.style.backgroundColor='blueviolet'
        b3.style.backgroundColor='black'
        b4.style.backgroundColor='black'
        x=2
    }
    b3.onclick = function(){
        img1.src = "img/slide-3.jpg"
        b1.style.backgroundColor='black'
        b2.style.backgroundColor='black'
        b3.style.backgroundColor='blueviolet'
        b4.style.backgroundColor='black'
        x=3
    }
    b4.onclick = function(){
        img1.src = "img/slide-4.jpg"
        b1.style.backgroundColor='black'
        b2.style.backgroundColor='black'
        b3.style.backgroundColor='black'
        b4.style.backgroundColor='blueviolet'
        x=4
    }
</script>
QQ圖片20190521205648.png
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        
        <style>
            *{margin: 0;padding: 0;}
            #d1{height: 580px;border: 1px solid black;margin-left:20% ;margin-right:20% ;}
            button{font-size: 20px;}
            
        </style>
    </head>
    <body>
        
        <div id="d1">
            
        </div>
        <div id="d2" align="center">
            <button id="b1">添加</button>
            <button id="b2">閃爍</button>
        </div>
    </body>
</html>
<script type="text/javascript">
    function col(){
        red = parseInt(Math.random()*255)
        green = parseInt(Math.random()*255)
        blue = parseInt(Math.random()*255)
        color = rgb(red,green,blue)
        return color
    }
    
    d1 = document.getElementById('d1')
    b1 =document.getElementById('b1')
    b2 = document.getElementById('b2')
    count = 0
    b1.onclick = function(){
        count++
        if (count<=25){
        red = parseInt(Math.random()*255)
        green = parseInt(Math.random()*255)
        blue = parseInt(Math.random()*255)
        d3 = document.createElement('div')
        d3.style ='width:20%;height:20%;border:0;float:left;'
        d3.style.backgroundColor =`rgb(${red},${green},${blue})`
        
        d1.appendChild(d3)
        }
    }
    divs = d1.children
    
    console.log(divs)
    flag = false
    b2.onclick = function(){
        if (! flag){
            b2.innerText='暫停'
            t2 = setInterval(function(){                                                
                for (x=0;x<divs.length;x++)
                {
                red = parseInt(Math.random()*255)
                green = parseInt(Math.random()*255)
                blue = parseInt(Math.random()*255)
                divs[x].style.backgroundColor = `rgb(${red},${green},${blue})`      
                }                               
            },500)
            
            flag=true
        }
        else{
            b2.innerText='閃爍'
            clearInterval(t2)
            flag=false
        }
    }
</script>
QQ圖片20190522114250.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖芬探,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡拍柒,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進(jìn)店門屈暗,熙熙樓的掌柜王于貴愁眉苦臉地迎上來拆讯,“玉大人,你說我怎么就攤上這事养叛≈帜牛” “怎么了?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵弃甥,是天一觀的道長爽室。 經(jīng)常有香客問我,道長淆攻,這世上最難降的妖魔是什么阔墩? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任嘿架,我火速辦了婚禮,結(jié)果婚禮上啸箫,老公的妹妹穿的比我還像新娘耸彪。我一直安慰自己,他們只是感情好忘苛,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布蝉娜。 她就那樣靜靜地躺著,像睡著了一般扎唾。 火紅的嫁衣襯著肌膚如雪召川。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天胸遇,我揣著相機(jī)與錄音荧呐,去河邊找鬼。 笑死纸镊,一個(gè)胖子當(dāng)著我的面吹牛坛增,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播薄腻,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼收捣,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了庵楷?” 一聲冷哼從身側(cè)響起罢艾,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎尽纽,沒想到半個(gè)月后咐蚯,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡弄贿,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年春锋,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片差凹。...
    茶點(diǎn)故事閱讀 38,577評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡期奔,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出危尿,到底是詐尸還是另有隱情呐萌,我是刑警寧澤,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布谊娇,位于F島的核電站肺孤,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜赠堵,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一小渊、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧茫叭,春花似錦粤铭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽酱鸭。三九已至吗垮,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間凹髓,已是汗流浹背烁登。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蔚舀,地道東北人饵沧。 一個(gè)月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像赌躺,于是被迫代替她去往敵國和親狼牺。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內(nèi)容