gpt4 book ai didi

javascript - jsfiddle 上的代码无法转换

转载 作者:行者123 更新时间:2023-11-30 00:35:11 24 4
gpt4 key购买 nike

我在 jsfiddle 上开发了这个 html5 动画

http://jsfiddle.net/UZMyu/5/

我试图让它在纯 html 文档上工作,但它不起作用。

在jsbin上,没有下雪效果,中间的照片没有显示。

http://jsbin.com/lonefopuzo/1/edit?html,output

$(function() {

var COUNT = 180;
var masthead = document.querySelector('.masthead');
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
var width = masthead.clientWidth;
var height = masthead.clientHeight;
var i = 0;

var Snowflake = function() {
this.x = 0;
this.y = 0;
this.vy = 0;
this.vx = 0;
this.r = 0;

this.reset();
}

Snowflake.prototype.reset = function() {
console.log('Reset was called');
this.x = Math.random() * width;
this.y = Math.random() * -height;
this.vy = 1 + Math.random() * 3;
this.vx = 0.5 - Math.random();
this.r = 1 + Math.random() * 2;
this.o = 0.5 + Math.random() * 0.5;
}

canvas.width = width;
canvas.height = height;
canvas.style.position = 'absolute';
canvas.style.left = canvas.style.top = '0';
ctx.fillStyle = '#FFF';

var snowflakes = [],
snowflake;
for (i = 0; i < COUNT; i++) {
snowflake = new Snowflake();
snowflakes.push(snowflake);
}

function update() {

ctx.clearRect(0, 0, width, height);

for (i = 0; i < COUNT; i++) {
snowflake = snowflakes[i];
snowflake.y += snowflake.vy;
snowflake.x += snowflake.vx;

ctx.globalAlpha = snowflake.o;
ctx.beginPath();
ctx.arc(snowflake.x, snowflake.y, snowflake.r, 0, Math.PI * 2, false);
ctx.closePath();
ctx.fill();

if (snowflake.y > height) {
snowflake.reset();
}
}

webkitRequestAnimationFrame(update);
}

webkitRequestAnimationFrame(update);

masthead.appendChild(canvas);
})();





$(function() {
setTimeout(function() {
$(".seasons1").addClass("rotate");
}, 1000);
});


$(function() {
setTimeout(function() {
$('.seasons1').animate({
opacity: 1,
}, 2000);
}, 1000);
});

$(function() {
setTimeout(function() {
$(".seasons1").removeClass("rotate");
}, 10000);
});

$(function() {
setTimeout(function() {
$(".seasons1").addClass("rotate2");
}, 11000);
});


$(function() {
setTimeout(function() {
$('.seasons1').animate({
opacity: 0,
}, 2000);
}, 14000);
});

$(function() {
setTimeout(function() {
$('.seasons2').animate({
opacity: 1,
}, 2000);
$(".seasons2").addClass("rotate");
}, 14000);
});
.masthead {
width: 1000px;
height: 800px;
background-size: 1000px 800px;
background: #ffb76b;
/* Old browsers */
background: -moz-linear-gradient(left, #ffb76b 0%, #ffa73d 36%, #ff7c00 100%, #ff7f04 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ffb76b), color-stop(36%, #ffa73d), color-stop(100%, #ff7c00), color-stop(100%, #ff7f04));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #ffb76b 0%, #ffa73d 36%, #ff7c00 100%, #ff7f04 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #ffb76b 0%, #ffa73d 36%, #ff7c00 100%, #ff7f04 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(left, #ffb76b 0%, #ffa73d 36%, #ff7c00 100%, #ff7f04 100%);
/* IE10+ */
background: linear-gradient(to right, #ffb76b 0%, #ffa73d 36%, #ff7c00 100%, #ff7f04 100%);
/* W3C */
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffb76b', endColorstr='#ff7f04', GradientType=1);
}
.seasons1 {
width: 299px;
height: 299px;
background-image: url("http://i.hizliresim.com/31N162.png");
position: absolute;
left: 330px;
top: 180px;
opacity: 0;
}
.seasons2 {
width: 267px;
height: 267px;
background-image: url("http://i.hizliresim.com/7VYVJL.png");
opacity: 0;
position: absolute;
left: 340px;
top: 200px;
}
.rotate {
-webkit-animation: spin 4s ease-in-out; // No more infinite
-moz-animation: spin 4s linear;
animation: spin 4s linear;
}
@-moz-keyframes spin {
100% {
-webkit-transform: rotate(2460deg);
transform: rotate(2460deg);
}
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(2460deg);
transform: rotate(2460deg);
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(2460deg);
transform: rotate(2460deg);
}
}
.rotate2 {
-webkit-animation: spin 4s ease-in-out; // No more infinite
-moz-animation: spin 4s linear;
animation: spin 4s linear;
}
@-moz-keyframes spin {
100% {
-webkit-transform: rotate(5460deg);
transform: rotate(5460deg);
}
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(5460deg);
transform: rotate(5460deg);
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(5460deg);
transform: rotate(5460deg);
}
}
.text1 {
width: 412px;
height: 138px;
background-image: url("http://i.hizliresim.com/W64rEq.png");
opacity: 1;
position: absolute;
left: 40px;
top: 500px;
}
.text2 {
width: 523px;
height: 160px;
background-image: url("http://i.hizliresim.com/BRE929.png");
opacity: 1;
position: absolute;
left: 440px;
top: 485px;
}
.replay {
width: 330px;
height: 57px;
background-image: url("http://i.hizliresim.com/BREEzG.png");
opacity: 1;
position: absolute;
z-index: 50;
left: 50px;
top: 685px;
}
.replay:hover {
cursor: pointer;
}
.visit {
width: 330px;
height: 57px;
background-image: url("http://i.hizliresim.com/4ZDD3L.png");
opacity: 1;
position: absolute;
z-index: 50;
left: 620px;
top: 685px;
}
.visit:hover {
cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div class="masthead">
<div class="seasons1"></div>
<div class="seasons2"></div>
<div class="text1"></div>
<div class="text2"></div>
<div class="replay"></div>
<div class="visit"></div>
</div>

最佳答案

check the jsfiddle

Check the JSBin

你有几个错误只是给你修好了

先去掉函数开头的$,去掉函数末尾的()

在你的 CSS 中缺少一些前缀

并且您正在使用在 chrome 中工作的 webkitRequestAnimationFrame 只需将其更改为 requestAnimationFrame

关于javascript - jsfiddle 上的代码无法转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27495973/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com