js星海特効を実現した例
まずスクリーンサイズを取得します。
以上がjs星海特効の実施例の詳細です。js星海特効に関する資料は他の関連記事に注目してください。
var screenWidth = document.documentElement.clientWidth;
var screenHeight = document.documentElement.clientHeight;
次にアニメーション(星の透明度)を定義できます。
@keyframes flash {
0%{opacity: 0}
25%{opacity: 0.25}
50%{opacity: 0.5}
75%{opacity: 0.75}
100%{opacity: 1}
}
すべてのコードは以下の通りです。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 70px;
height: 80px;
background: url("./images/star.jpg") no-repeat;
animation: flash 1s;
}
body{
background-color: black
}
@keyframes flash {
0%{opacity: 0}
25%{opacity: 0.25}
50%{opacity: 0.5}
75%{opacity: 0.75}
100%{opacity: 1}
}
</style>
</head>
<body>
<script>
var screenWidth = document.documentElement.clientWidth;
var screenHeight = document.documentElement.clientHeight;
// 50
for (let i = 0; i <50 ; i++) {
var box=document.createElement('div');
document.body.appendChild(box);
x=Math.random()*screenWidth;
y=Math.random()*screenHeight;
box.style.position='relative';
box.style.left=x+'px';
box.style.right=y+'px';
}
boxList=document.getElementsByTagName("div");
for (let i = 0; i < boxList.length; i++) {
boxList[i].onmouseover=function () {
this.style.transform='scale(1.5,1.5)';
};
boxList[i].onmouseout=function () {
this.style.transform='scale(1,1)';
};
}
</script>
</body>
</html>
効果は以下の通りです以上がjs星海特効の実施例の詳細です。js星海特効に関する資料は他の関連記事に注目してください。