This article example shares the specific code of js to achieve the star flash effect for your reference. The specific content is as follows The effect is as follows Ideas: 1. Prepare a picture of stars The code is as follows <style> *{ margin: 0; padding: 0; list-style: none; } body{ background-color: #000; } span{ width: 30px; height: 30px; background: url("../images_js/star.png") no-repeat; position: absolute; background-size:100% 100%; animation: flash 1s alternate infinite; } @keyframes flash { 0%{opacity: 0;} 100%{opacity: 1;} } span:hover{ transform: scale(3, 3) rotate(180deg) !important; transition: all 1s; } </style> </head> <body> <script> window.onload = function () { // 1. Find the screen size var screenW = document.documentElement.clientWidth; var screenH = document.documentElement.clientHeight; // 2. Dynamically create stars for(var i=0; i<150; i++){ // 2.1 Create stars var span = document.createElement('span'); document.body.appendChild(span); // 2.2 Random coordinates var x = parseInt(Math.random() * screenW); var y = parseInt(Math.random() * screenH); span.style.left = x + 'px'; span.style.top = y + 'px'; // 2.3 Random scaling var scale = Math.random() * 1.5; span.style.transform = 'scale('+ scale + ', ' + scale + ')'; // 2.4 frequency var rate = Math.random() * 1.5; span.style.animationDelay = rate + 's'; } } </script> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Tutorial on installing MySQL 5.7.18 using RPM package
>>: How to build php-nginx-alpine image from scratch in Docker
This article example shares the specific code for...
When using vue to develop projects, the front end...
This article example shares the specific code of ...
Overview Volume is the abstraction and virtualiza...
Table of contents Advantage 1: Optimization of di...
Hardware View Commands system # uname -a # View k...
Table of contents Preface 1. Download MySQL 8.0.2...
Table of contents Preface difficulty Cross-domain...
1. Download Go to the Apache official website htt...
1. Installation of MYSQL 1. Open the downloaded M...
Table of contents 1. Function debounce 1. What is...
Table of contents ReactRouterV6 Changes 1. <Sw...
Table of contents 1. Overview 2. Attributes 1. Ma...
mysql returns Boolean type In the first case, ret...
Database performance optimization generally adopt...