私は自分のプロジェクトのウェブサイトのプリローダーとしてJavaScript(JavaScriptのアニメーション)を作りたいと思っています。JavaScriptをHTMLページのプリローダーにする
本の線に沿って何か: http://soulwire.github.io/Plasmatic-Isosurface/
私はこれが最初に実行したいと私のページの要素がダウンロードされるまでに、それが完全にロードされたページをオフにして表示する必要があり、その後
されていますこれは可能ですか?
おかげ
は、ここで私は
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Javascript preloader</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="preloader"></div>
<canvas id='canvas'></canvas>
<script src="js/index.js"></script>
<img src="https://wallpaperscraft.com/image/stars_sky_shore_84534_1920x1080.jpg" alt="safe"></img>
</body>
</html>
上でそれをテストするサンプルHTMLコードです** EDIT CODE謝罪TO
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Preloader Testing</title>
<style>
.preloader{
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 1000;
}
</style>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas class="preloader" id='canvas'></canvas>
<script src="js/index.js"></script>
<img src="https://wallpaperscraft.com/image/stars_sky_shore_84534_1920x1080.jpg" alt="safe"></img>
</body>
<script>
//after window is loaded completely
window.onload = function(){
//hide the preloader
document.querySelector(".preloader").style.display = "none";
}
</script>
</html>
あるhttps://ihatetomatoes.net/create-custom-preloading-screen/ CSSアニメーション、ないジャバスクリプトにも適用することが – Nezir
1。私が間違っている場合は私を修正してください(と申し訳ありません) –