Javascript implements random star display effects_javascript skills
The example in this article explains the detailed code of javascript to implement random star display effects. The specific content is as follows
- (1) The background of the webpage is black
- (2) Random size of stars: min=15, max=80
- (3) The coordinates of the stars are random:
- x_left=0,x_right=(browser width-star width)
- y_top=0,y_bottom=?
- (4) Click a star and the star disappears
- (5) The webpage is loaded and stars start to display
-
(6) Timer: insert a star every other cycle
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <script type="text/javascript"> //定义全局变量 var img_width_min = 15; var img_width_max = 80; var x_left = 0; var x_right = 0; var y_top = 0; var y_bottom = 0; //定义初始化的函数 function init() { document.body.bgColor = "#000"; x_right = window.innerWidth - img_width_max; y_bottom = window.innerHeight - img_width_max; //定时器 setInterval("showStar()",1000); } //显示星星 function showStar() { //创建一个图片 var node_img = document.createElement("img"); //随机图片大小和随机坐标 var width = getRandom(img_width_min,img_width_max); var x = getRandom(x_left,x_right); var y = getRandom(y_top,y_bottom); //增加src的属性 node_img.setAttribute("src","images/xingxing.gif"); //增加style属性 var style = "position:absolute;left:"+x+"px;top:"+y+"px;"; style += "width:"+width+"px;"; node_img.setAttribute("style",style); //增加一个onclick事件属性 node_img.setAttribute("onclick","removeImg(this)"); //将图片追加到<body>元素下 document.body.appendChild(node_img); } function removeImg(obj) { document.body.removeChild(obj); } function getRandom(min,max) { return Math.floor(Math.random()*(max-min)+min); } </script> </head> <body onload="init()"> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

The article discusses strategies for optimizing JavaScript performance in browsers, focusing on reducing execution time and minimizing impact on page load speed.

The article discusses effective JavaScript debugging using browser developer tools, focusing on setting breakpoints, using the console, and analyzing performance.

This article outlines ten simple steps to significantly boost your script's performance. These techniques are straightforward and applicable to all skill levels. Stay Updated: Utilize a package manager like NPM with a bundler such as Vite to ensure

This article will guide you to create a simple picture carousel using the jQuery library. We will use the bxSlider library, which is built on jQuery and provides many configuration options to set up the carousel. Nowadays, picture carousel has become a must-have feature on the website - one picture is better than a thousand words! After deciding to use the picture carousel, the next question is how to create it. First, you need to collect high-quality, high-resolution pictures. Next, you need to create a picture carousel using HTML and some JavaScript code. There are many libraries on the web that can help you create carousels in different ways. We will use the open source bxSlider library. The bxSlider library supports responsive design, so the carousel built with this library can be adapted to any

The article explains how to use source maps to debug minified JavaScript by mapping it back to the original code. It discusses enabling source maps, setting breakpoints, and using tools like Chrome DevTools and Webpack.

Sequelize is a promise-based Node.js ORM. It can be used with PostgreSQL, MySQL, MariaDB, SQLite, and MSSQL. In this tutorial, we will be implementing authentication for users of a web app. And we will use Passport, the popular authentication middlew
