day28-作业

1.用jQuery制作渐隐渐显效果的轮播图


<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            *{
                padding: 0px;
                margin: 0px;
                box-sizing: border-box;
            }
            .container{
                width: 950px;
                margin: 50px auto;
                text-align: center;
                /* background-color: #000000; */
            }
            .bigPic{
                height: 435px;
            }
            .points{
                /* background-color: #A9A9A9; */
                display: flex;
                width: 100px;
                justify-content: space-between;
                margin: 0 auto;
                position: relative;
                top: -30px;
            }
            .point{
                width: 8px;
                height: 8px;
                border-radius: 4px;
                background-color: saddlebrown;
                flex-direction: column;
            }
            .now{
                background-color: burlywood;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="bigPic"><img src="img/slide-0.jpg" alt="图片"></div>
            <div class="points">
                <div class="point now"></div>
                <div class="point"></div>
                <div class="point"></div>
                <div class="point"></div>
            </div>
        </div>
        <script src="js/jquery.min.js"></script>
        <script>
            let imgPath = 'img/slide-'
            let timer = null
            let index = 1
            let timerId = null
            $('.point').on('mouseover', (evt)=>{
                // console.log($(evt.target).index())
                if (!$(evt.target).hasClass('now')){
                    // $('.bigPic img').fadeOut(500, ()=>{
                    //  $('.bigPic img').css({'display': 'block', 'visibility': 'hidden'})
                    // })
                    $('.bigPic img').fadeOut(500)
                    $('.bigPic img')[0].src = imgPath + $(evt.target).index() + '.jpg'
                    $('.bigPic img').fadeIn(500)
                    $(evt.target).addClass('now').siblings().removeClass('now')
                    index = ($(evt.target).index() + 1) % 4
                    clearInterval(timerId)
                }
            })
            function autoplay(){
                // console.log($('.point').length)
                $('.bigPic img').fadeOut(500)
                $('.bigPic img')[0].src = imgPath + index + '.jpg'
                $('.bigPic img').fadeIn(500)
                $('.point').eq(index).addClass('now').siblings().removeClass('now')
                index += 1
                index %= 4
            }
            timerId = setInterval(autoplay, 2000)
            
            $('.bigPic img').hover((evt)=>{
                clearInterval(timerId)
            }, (evt)=>{
                timerId = setInterval(autoplay, 2000)
            })
            // setInterval(, 400)
        </script>
    </body>
</html>


2.猜数字游戏


<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            *{
                padding: 0px;
                margin: 0px;
                box-sizing: border-box;
            }
            .container{
                width: 800px;
                margin: 50px auto;
                background-color: #A9A9A9;
                text-align: center;
                padding: 30px 10px;
                font: 30px/30px "楷书","arial narrow";
            }
            .container > p{
                margin-top: 20px;
                margin-bottom: 20px;
            }
            .thyNumber{
                border: none;
                outline: none;
                padding: 10px 40px;
            }
            .ok, .restart{
                padding: 10px 20px;
                border: none;
                outline: none;
            }
            .btnStyle:hover{
                background-color: #5F9EA0;
            }
            .result{
                width: 600px;
                height: 300px;
                margin: 20px auto;
                background-color: #5F9EA0;
                overflow: auto;
            }
            .result > p{
                font-size: 20px;
                color: darkslategray;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <p>猜数字游戏(1~100)</p>
            <input type="text" placeholder="请输入数字" class="thyNumber">
            <button class="ok btnStyle">确定</button>
            <button class="restart" disabled="disabled">重新开始</button>
            <div class="result"></div>
        </div>
        <script src="js/jquery.min.js"></script>
        <script>
            // jQuery.noConflict()
            // console.log(jQuery('div'))
            // console.log(jQuery($))
            // console.log(jQuery(jQuery))
            let readyNum = parseInt(Math.random()*100) + 1
            // console.log(readyNum)
            $('.thyNumber').focus((evt)=>{
                // console.log(evt.target)
                $(evt.target).keypress((evt) =>{
                    // console.log(evt.keyCode)
                    condition = evt.keyCode >= 48 && evt.keyCode <= 57
                    if (!condition){
                        $(evt.target).blur()
                    }
                })
            })
            $('.ok').on('click', (evt)=>{
                // console.log($(evt.target).prev().val()=='')
                let thyNumber = $(evt.target).prev().val()
                let tipText = ''
                if (thyNumber){
                    thyNumber = parseInt(thyNumber)
                    if (thyNumber == readyNum){
                        tipText = '猜对了!'
                        $(evt.target).prev().blur().val('')
                        $(evt.target).prev().attr('readonly', 'readonly')
                        $(evt.target).attr('disabled', 'disabled')
                        // $(evt.target).hover(()=>{
                        //  $(evt.target).css("background-color", "#5F9EA0")
                        // }, ()=>{
                        //  $(evt.target).css("background-color", "#5F9EA0")
                        // })
                        $(evt.target).removeClass('btnStyle').next().addClass('btnStyle')
                        $('.restart').removeAttr('disabled')
                    }else if(thyNumber < readyNum){
                        tipText = '猜小了!'
                        $(evt.target).prev().focus().val('')
                    }else{
                        tipText = '猜大了!'
                        $(evt.target).prev().focus().val('')
                    }
                }else{
                    tipText = '内容非空!'
                    $(evt.target).prev().focus().val('')
                }
                // console.log($('.result').innerHeight())
                // console.log($('.result').height())
                // console.log($('.result').css('height'))
                $('.result').prepend($('<p>').text(tipText))
            })
            $('.restart').on('click', (evt)=>{
                $(evt.target).removeClass('btnStyle').attr('disabled', 'disabled').prev().addClass('btnStyle').removeAttr('disabled')
                $('.result').empty()
                $('.thyNumber').removeAttr('readonly').focus()
                readyNum = parseInt(Math.random()*100) + 1
                // console.log(readyNum)
            })
        </script>
    </body>
</html>

3.模仿流氓广告位

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            *{
                padding: 0px;
                margin: 0px;
                box-sizing: border-box;
            }
            .ad{
                height: 300px;
                width: 300px;
                line-height: 300px;
                text-align: center;
                position: fixed;
                right: 50px;
                top: 50px;
                background-color: #A9A9A9;
            }
            .close{
                position: absolute;
                top: 0px;
                right: 0px;
                font-size: 20px;
                line-height: 20px;
                
                width: 20px;
                height: 20px;
                color: whitesmoke;
                cursor: pointer;
            }
            .close:hover{
                background-color: #696969;
            }
        </style>
    </head>
    <body>
        <div class="ad">
            广告位招租
            <div class="close">&times</div>
        </div>
        <script src="js/jquery.min.js"></script>
        <script>
            let times = 0
            let distance = 20
            $('.close').on('click', (evt)=>{
                if (times == 3){
                    $(evt.target).parent().hide()
                }else{
                    $('.ad').css({'top': parseInt($('.ad').css('top'))+distance+'px', 'right': parseInt($('.ad').css('right'))+distance+'px'})
                    times += 1
                }
            })
        </script>
    </body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,372评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,368评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,415评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,157评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,171评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,125评论 1 297
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,028评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,887评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,310评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,533评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,690评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,411评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,004评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,659评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,812评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,693评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,577评论 2 353

推荐阅读更多精彩内容

  • 【学员信息】:206-栀子花开风轻云淡-小作业13 【作业要求】:本次训练营的复盘文提交到简书,不少于600字...
    栀子花开风轻云淡阅读 184评论 0 2
  • 第一周至第十三周视频文件目录及笔记连接 第一周 第一天标题与无序列表粗体、斜体、代码块有序列表,图片和链接引入表格...
    果木山阅读 202评论 0 0
  • 安装jdk环境 1.到官网https://www.java.com/en/download/下载安装 2.配置环境...
    过来摸摸头丶阅读 1,446评论 0 0
  • 上大学以后,因为经常自己做决定,渐渐的知道任何事都需要自己拿主意、自己执行、自己负责、自己规划,大多的施加者和接受...
    O布布O阅读 204评论 0 2
  • 今天早上,虽然下着毛毛细雨,但同学们还是很开心,因为学校举行一场“游考嘉年华活动”,让同学们在游玩中增长知识...
    梁思华阅读 494评论 0 0