新年贺卡制作

根据慕课网上视频,写的。


img
img

记录一下:
html:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
    <meta name="viewport" content="width=device-width,initial-scale=1.0, 
    minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="format-detection" content="telephone=no"/>
    <title>慕课贺春</title>
    
    <link rel="stylesheet" type="text/css" href="css/style.css"/>
    <script type="text/javascript" src="js/main.js"></script>
</head>
<body>
    <div class="music">
        <img src="img/music_pointer.png">
        <img id="music" class="play" src="img/music_disc.png">
    </div>
    <div class="page" id="page1">
        <div class="bg"></div>
        <div class="p1_lantern">点击屏幕<br />开启好运2016</div>
        <div class="p1_immoc"></div>
        <div class="p1_words">2016年慕课网新年特献</div>
    </div>
    <div class="page" id="page2">
        <div class="p2_bg_loading"></div>
        <div class="bg"></div>
        <div class="p2_circle"></div>
        <div class="p2_2016"></div>
    </div>
    <div class="page" id="page3">
        <div class="bg"></div>
        <div class="p3_logo"></div>
        <div class="p3_title"></div>
        <div class="p3_second"></div>
        <div class="p3_first"></div>
        <div class="p3_blessing"></div>
    </div>
    
    <audio autoplay="true">
    <source src="http://www.imooc.com/activity/project/project1/audio/happynewyear.mp3" type="audio/mpeg">
    
    </audio>
</body>
</html>

css:

/* all tag */

* {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1.5625vw;
    font-family: "microsoft yahei";
}

html,
body {
    height: 100%;
    overflow: hidden;
}


/**
 * music tag
 */

.music {
    width: 15vw;
    height: 15vw;
    border: 4px solid #ef1639;
    position: fixed;
    top: 3vh;
    right: 4vw;
    z-index: 5;
    border-radius: 50%;
    background: #fff;
}

.music > img:first-of-type {
    position: absolute;
    top: 24%;
    right: 2.5%;
    width: 28.421%;
    z-index: 1;
}

.music > img:last-of-type {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 79%;
    z-index: 0;
}

.music > img.play {
    -webkit-animation: music_disc 4s linear infinite;
    -moz-animation: music_disc 4s linear infinite;
    -ms-animation: music_disc 4s linear infinite;
    -o-animation: music_disc 4s linear infinite;
    animation: music_disc 4s linear infinite;
}

@-webkit-keyframes music_disc {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes music_disc {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/**
 * page tag
 */

.page {
    position: absolute;
    width: 100%;
    height: 100%;
}

.page > .bg {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}


/**
 * page1 tag
 */

#page1 {
    display: block;
}

#page1 > .bg {
    background: url(../img/p1_bg.jpg) no-repeat center center;
    background-size: 100%;
}

#page1 > .p1_lantern {
    position: absolute;
    top: -3.4%;
    right: 0;
    left: 0;
    margin: auto;
    background: url(../img/p1_lantern.png) no-repeat center bottom;
    background-size: 100%;
    width: 45vw;
    height: 71.2vh;
    font-size: 3.506rem;
    color: #fff;
    padding-top: 31vh;
    text-align: center;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

#page1 > .p1_lantern:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    margin: auto;
    width: 30vw;
    height: 30vw;
    background: #D60B3B;
    opacity: .5;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10vw 10vw #D60B3B;
    -moz-box-shadow: 0 0 10vw 10vw #D60B3B;
    -ms-box-shadow: 0 0 10vw 10vw #D60B3B;
    -o-box-shadow: 0 0 10vw 10vw #D60B3B;
    box-shadow: 0 0 10vw 10vw #D60B3B;
    -webkit-animation: p1_lantern .5s infinite alternate;
    -moz-animation: p1_lantern .5s infinite alternate;
    -o-animation: p1_lantern .5s infinite alternate;
    animation: p1_lantern .5s infinite alternate;
}

@-webkit-keyframes p1_lantern {
    0% {
        opacity: .5;
        -webkit-transform: scale(.8, .8);
        transform: scale(.8, .8);
    }
    100% {
        opacity: 1;
    }
}

@keyframes p1_lantern {
    0% {
        opacity: .5;
        -webkit-transform: scale(.8, .8);
        transform: scale(.8, .8);
    }
    100% {
        opacity: 1;
    }
}

#page1 > .p1_immoc {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/p1_imooc.png) no-repeat center center;
    background-size: 100%;
    width: 27.656vw;
    height: 30.656vh;
    margin: auto;
}

#page1 > .p1_words {
    font-size: 2.314rem;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 23px;
    text-align: center;
    color: #231815;
}


/**
 * page2 tag
 */

#page2 {
    display: none;
    -webkit-transition: .5s;
        transition: .5s;
}

#page2.fadeOut{
    opacity: .3;
    -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
}

#page2 > .p2_bg_loading{
    z-index: 4;
    background: #ef1639;
    -webkit-animation: p2_bg_loading 1s linear forwards;
        animation: p2_bg_loading 1s linear forwards;
}

@-webkit-keyframes p2_bg_loading{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}

@keyframes p2_bg_loading{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}

#page2 > .bg {
    background: url(../img/p2_bg.jpg) no-repeat center center;
    background-size: 100%;
}

#page2 > .p2_circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    background: url(../img/p2_circle_outer.png) no-repeat center center;
    background-size: 100%;
    width: 59.375vw;
    height: 59.375vw;
    -webkit-animation: p2_circle_outter 1s linear 3s infinite;
    animation: p2_circle_outter 1s linear 3s infinite;
}

@-webkit-keyframes p2_circle_outter {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes p2_circle_outter {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#page2 > .p2_circle:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    content: "";
    background: url(../img/p2_circle_middle.png) no-repeat center center;
    background-size: 100%;
    width: 45.625vw;
    height: 45.625vw;
    -webkit-animation: p2_circle_middle 1s linear 2s infinite;
    animation: p2_circle_middle 1s linear 2s infinite;
}

@-webkit-keyframes p2_circle_middle {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

@keyframes p2_circle_middle {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

#page2 > .p2_circle:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    content: "";
    background: url(../img/p2_circle_inner.png) no-repeat center center;
    background-size: 100%;
    width: 39.9375vw;
    height: 39.9375vw;
    -webkit-animation: p2_circle_inner 1s linear 1s infinite;
    animation: p2_circle_inner 1s linear 1s infinite;
}

@-webkit-keyframes p2_circle_inner {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-1080deg);
        transform: rotate(-1080deg);
    }
}

@keyframes p2_circle_inner {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-1080deg);
        transform: rotate(-1080deg);
    }
}

#page2 > .p2_2016 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: url(../img/p2_2016.png) no-repeat center center;
    background-size: 100%;
    width: 27.5vw;
    height: 6.24vh;
}


/**
 * page3 tag
 */

#page3 {
    display: none;
    -webkit-transition: .5s;
        transition: .5s;
}

#page3.fadeIn{
    -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
}

#page3 > .bg {
    background: url(../img/p3_bg.jpg) no-repeat center center;
    background-size: 100%;
}

#page3 > .p3_logo {
    width: 34.6875vw;
    height: 6.327vh;
    position: absolute;
    top: 7.82vh;
    right: 0;
    left: 0;
    margin: auto;
    background: url(../img/p3_logo.png) no-repeat center center;
    background-size: 100%;
}

#page3 > .p3_title {
    width: 48.125vw;
    height: 50vh;
    position: absolute;
    top: 21vh;
    right: 0;
    left: 0;
    margin: auto;
    background: url(../img/p3_title.png) no-repeat center center;
    background-size: 100%;
}

#page3 > .p3_second {
    width: 22.8125vw;
    height: 41.652vh;
    position: absolute;
    top: 25.48vh;
    left: 3.75vw;
    background: url(../img/p3_couplet_second.png) no-repeat center center;
    background-size: 100%;
}

#page3 > .p3_first {
    width: 22.8125vw;
    height: 41.652vh;
    position: absolute;
    top: 25.48vh;
    right: 3.75vw;
    background: url(../img/p3_couplet_first.png) no-repeat center center;
    background-size: 100%;
}

#page3 > .p3_blessing {
    width: 32vw;
    height: 32vh;
    position: absolute;
    right: 0;
    bottom: 3vh;
    left: 0;
    margin: auto;
    border-radius: 50%;
    background: url(../img/p3_blessing.png) no-repeat center center;
    background-size: 100%;
    -webkit-animation: p3_blessing 2s linear infinite;
    animation: p3_blessing 2s linear infinite;
}

@-webkit-keyframes p3_blessing {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes p3_blessing {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

js


window.onload = function(){
    /*console.log("网页可见区域宽:" + document.body.clientWidth);
    console.log("网页可见区域高:" + document.body.clientHeight);
    console.log("网页可见区域宽(包括边线的宽):" + document.body.offsetWidth);
    console.log("网页可见区域高(包括边线的高):" + document.body.offsetHeight);
    console.log("网页正文全文宽:" + document.body.scrollWidth);
    console.log("网页正文全文高:" + document.body.scrollHeight);
    console.log("网页被卷去的高:" + document.body.scrollTop);
    console.log("网页被卷去的左:" + document.body.scrollLeft);
    console.log("网页正文部分上:" + window.screenTop);
    console.log("网页正文部分左:" + window.screenLeft);
    console.log("屏幕分辨率的宽:" + window.screen.width);
    console.log("屏幕分辨率的高:" + window.screen.height);
    console.log("屏幕可用工作区宽度:" + window.screen.availWidth);
    console.log("屏幕可用工作区高度:" + window.screen.availHeight);*/
    
    //获取元素
    var page1 = document.getElementById("page1");
    var page2 = document.getElementById("page2");
    var page3 = document.getElementById("page3");
    
    var music = document.getElementById("music");
    var audio = document.getElementsByTagName("audio")[0];

    //当音乐播放完停止的时候,自动停止光盘旋转效果
    audio.addEventListener("ended", function(event){
        music.setAttribute("class", "");
        //this.style.animationPlayState = "paused";
        //this.style.webkitAnimationPlayState = "paused";
    }, false);
    
    //点击音乐图标,控制音乐播放效果
    /*music.onclick = function(){
        if(audio.paused){
            audio.play();
            this.setAttribute("class","play");
            //this.style.animationPlayState = "running";
            //this.style.webkitAnimationPlayState = "running";
        }else{
            audio.pause();
            this.setAttribute("class","");
            //this.style.animationPlayState = "paused";
            //this.style.webkitAnimationPlayState = "paused";
        }
    }*/
    
    //点击音乐图标,控制音乐播放效果
    music.addEventListener("touchstart", function(event){
        if(audio.paused){
            audio.play();
            this.setAttribute("class","play");
            //this.style.animationPlayState = "running";
            //this.style.webkitAnimationPlayState = "running";
        }else{
            audio.pause();
            this.setAttribute("class","");
            //this.style.animationPlayState = "paused";
            //this.style.webkitAnimationPlayState = "paused";
        }
    }, false);
    
    //点击屏幕,开启好运2016
    page1.addEventListener("touchstart", function(event){
        page1.style.display = "none";
        page2.style.display = "block";
        page3.style.display = "block";
        page3.style.top = "100%";
        
        setTimeout(function(){
            page2.setAttribute("class", "page fadeOut");
            page3.setAttribute("class", "page fadeIn");
        }, 5500);
    }, false);
}

遇到的坑1,page3.style.top = "100%";写成了 100% ,马丹找了好久才发现问题的所在。
遇到的坑2,引入了js,在里面写的点击事件,但是就事没有效果,经过排查,发现是上面被遮挡了,index-z 的问题。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,743评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,296评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,285评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,485评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,581评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,821评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,960评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,719评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,186评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,516评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,650评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,329评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,936评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,757评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,991评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,370评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,527评论 2 349

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,777评论 25 707
  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,737评论 1 92
  • 图片来源:pixabay.com 四年前,豆姐还未出生,我和豆妈便时常聊起将来她的教育问题。当时我们还没有什么具体...
    王安迪阅读 276评论 0 0
  • 当时生活的这一瞬间开始垂青你,如果你不回应,便是罪过。
    汐茗阅读 236评论 0 1
  • 又快到年关,工资已花光。 摸摸空荷包,晚上没吃饭。 剩蛋,剩蛋,忍痛分你一半。
    凯陵阅读 641评论 0 0