最近离圣诞节不远了、整理了一些关于圣诞相关的前端特效网页设计和小游戏的代码送大家、直接上效果吧。
视频演示:点击查看完整视频演示 》》》
html5基于svg绘制调皮圣诞老人:
<![CDATA[ @import url('https://fonts.googleapis.com/css?family=Luckiest+Guy'); .bg {fill: #4285f4} .footprint{fill:#4285f4} .pink{fill:#ffafd4} .red{fill:#900f10} .white{fill:#fff} .black{fill:#000} .stroke{stroke:#000;stroke-width:1} .txt{fill:#f0f7ff;font-family:'Luckiest Guy', cursive;font-size:60px;text-transform:uppercase;} .hidden{opacity:0} svg{width:100%;padding-bottom: 55.55%;height:1px;overflow: visible;visibility:hidden;} ]]>
</style>
</defs>
<script xlink:href="js/TweenMax.min.js" type="text/javascript"></script>
<script type="text/javascript">
沉睡的圣诞老人动画背景:
<div class="santa">
<div class="disc"></div>
<div class="hat">
<div class="hat-space"></div>
</div>
<div class="furr"></div>
<div class="face">
<div class="eyebrows eyebrows--left"></div>
<div class="eyebrows eyebrows--right"></div>
<div class="nose"></div>
<div class="beard">
<div class="beard--left"></div>
<div class="beard--right"></div>
</div>
<div class="mouth"> </div>
</div>
<div class="hand--up">
<div class="arm--right"></div>
<div class="hand--right"></div>
</div>
<div class="hand--left"></div>
<div class="stomach">
<div class="belt-buckle"></div>
</div>
<div class="leg--up"></div>
<div class="leg--down"></div>
</div>
旋转圣诞树动态特效:
圣诞树生成动画制作:
<div id="container" class="parallax-container snow">
<ul id="christmas_scene" class="christmas-scene">
<li class="layer" data-depth="0.80">
<div class="layer-5 layer-photo photo-zoom"></div>
</li>
<li class="layer" data-depth="0.60">
<div class="layer-4 layer-photo photo-zoom"></div>
</li>
<li class="layer" data-depth="0.40">
<div class="layer-3 layer-photo photo-zoom"></div>
</li>
<li class="layer" data-depth="0.20">
<div class="layer-2 layer-photo photo-zoom"></div>
</li>
<li class="layer" data-depth="0.00">
<div class="layer-1 layer-photo"></div>
</li>
</ul>
<!-- Countdown Container -->
<div id="countdown_container"></div>
<!-- Merry Christmas Text -> You can replace with anything you like! -->
<div class="merry-christmas-text">Merry Christmas</div>
<!-- Happy new year 2017 photo -->
<div class="happy-new-year"></div>
<!-- Contact Pole Image -> From here the E-mail modal is triggered -->
<div id="mail_pole">
<img src="images/pole.png" class="img-responsive" alt="mail-pole" data-toggle="modal" data-target="#contact_modal">
</div>
<!-- Christmas Tree -->
<img src="images/christmas-tree.png" alt="christmas-tree" id="christmas_tree">
</div>
fullpage翻屏滚动下雪js效果模板:
圣诞抓礼物小游戏:
var canvas = document.getElementById("canvas"),
ctx = canvas.getContext("2d"),
elfImage = document.getElementById("elf");
greenGiftImage = document.getElementById("green_gift");
redGiftImage = document.getElementById("red_gift");
blueGiftImage = document.getElementById("blue_gift");
bombImage = document.getElementById("bomb");
bangImage = document.getElementById("bang");
var x = canvas.width / 2;
var y = canvas.height - 30;
var dx = 2;
var dy = -2;
const elfHeight = 70;
const elfWidth = 55;
var elfX = (canvas.width - elfWidth) / 2;
const elfSpeed = 10;
var rightPressed = false;
var leftPressed = false;
var spacePressed = false;
var spawnInterval;
var spawnTimer = 50;
css3雪花圣诞树动画特效:
卡通彩色圣诞树动画特效:
打卡 文章 更新 115/ 365天 路过得小伙伴点个赞吧。
今天的文章程序员也可以很浪漫!精选10个圣诞节特效网页设计-前端HTML+CSS等实现分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/16724.html