Table of Contents
pixi.js
Create renderer
Create stage
Creating a material set
Load images according to the material set

treasureHunter.json is the configuration file of the material set, and setup is the callback function called after the image is loaded.
PIXI.loader After loading is complete, you can obtain the loaded image through PIXI.loader.resources.
Callback function
Create scene (gameScene)
Use pixi to draw graphics
Draw line graphics
Home Web Front-end JS Tutorial A preliminary study on pixi framework in Javascript

A preliminary study on pixi framework in Javascript

May 19, 2018 pm 01:54 PM
javascript js

pixi.js

Create renderer

Create an area that can play animation, equivalent to (canvas).

//v4.4.2之前的旧写法
//创建  
var renderer = PIXI.autoDetectRenderer(w, h, {  
    backgroundColor: 0x1099bb,  
    transparent: true //背景是否设为透明   
});  

document.body.appendChild(renderer.view);  
//舞台添加显示对象sprite及每次渲染的监听函数  

var stage = new PIXI.Container();  
stage.addChild(sprite);  
animate();  
function animate() {  
    renderer.render(stage);  
    requestAnimationFrame(animate);  
}  

//v4.4.2之后的新写法
//创建  
var app = new PIXI.Application(w, h, {  
    backgroundColor: 0x1099bb,   
    transparent: false //背景是否设为透明   
});

//添加显示对象sprite及每次渲染的监听函数  

app.stage.addChild(sprite);  
app.ticker.add(function(delta) {});  
document.body.appendChild(app.view);
Copy after login

In addition to the autoDetectRenderer interface, there are also CanvasRenderer and WebGLRenderer interfaces.
autoDetectRenderer can automatically create WebGL or Canvas renderer based on the client's support for WebGL.

Create stage

The stage is equivalent to a container (Container). After adding elements, the renderer (renderer) renders the stage. Equivalent to a top-level container.

There is a Container() class in pixi.js. This class is a container.

var stage = new PIXI.Container();

添加舞台之后可以由渲染器(renderer)渲染。
renderer.render(stage);
// 舞台(stage)搭建完成后渲染出来。。      ***最后
Copy after login

Creating a material set

The most important element in animation is a picture (material). This type of special picture object is called a sprite (in pixi.js sprite),
By controlling the size, position and some other attributes of sprite, the animation effect can be achieved.

There is a sprite class in pixi, which can create a sprite based on external pictures (materials) that can be used in pixi ##sprite

Object.

There are three ways to create:

  • Create from a single image
  • From the entire Material image creation, intercept certain parts according to different positions and sizes on the material to create sprite

  • Create from the material set

    The material set is a json file defines the position and size of the image in a certain material image, etc. The advantage of this is that you don’t have to define the position and size every time you create a sprite. On the other hand, you don’t need to modify the code when you modify the material image. .

Load images according to the material set

There is a loader class in pixi to manage images Load, and call the callback function after the loading is completed.

PIXI.loader
    .add("images/treasureHunter.json")
    .load(setup);
Copy after login


treasureHunter.json is the configuration file of the material set, and setup is the callback function called after the image is loaded.
PIXI.loader After loading is complete, you can obtain the loaded image through PIXI.loader.resources.

Callback function

After completing the image loading, PIXI.loader will automatically call the setup function for the next step of processing. Let's first define
a test method to see if it is as expected.

function setup() {
    console.log("加载完成.");
}
// 测试可以的话就可以,删除setup里面的东西,然后完善舞台。
Copy after login

Create scene (gameScene)

Games generally create two scenes, one is used to display the normal game screen (gameScene), and the other is used to display the game results (gameOverScene).

var gameScene;

function setup() {
    gameScene = new PIXI.Container();
}
Copy after login
Copy after login

To add all the materials in the container and create the corresponding sprite, how to add them? The loaded materials can be accessed through PIXI.loader.resources.

var gameScene;

function setup() {
    gameScene = new PIXI.Container();
}
Copy after login
Copy after login

Note: pixi needs to run on a server. It is recommended to use the http-server local server when debugging.

  • Game start interface scene

  • Game end interface scene (one appears and one disappears)

Use pixi to draw graphics

Draw line graphics
  • First you need to create a graphics classvar graphics = new PIXI.Graphics();

  • graphics.beginFill(0xFF3300 ); //Graphic fill color

  • ##graphics.lineStyle(4, 0xffd900,1); //Graphic border width, color, transparency

  • Drawing according to line point coordinates

  • graphics.moveTo(50,50);    //图形绘制起点
    graphics.lineTo(250, 50);    //连线到下一个点
    graphics.lineTo(100, 100);
    graphics.lineTo(50, 50);
    graphics.endFill();   // 图形结束标志
    Copy after login
Drawing squares and circles
  • Drawing Block
    graphics.drawRect(50, 250, 120, 120);//The parameters are the x point and y point coordinates respectively. Square length, square width

  • Draw a rounded square
    graphics.drawRoundedRect(150, 450, 300, 100, 15);// The first four parameters are the same as drawing a square, and the last corner radius

  • Drawing a circle
    graphics.drawCircle (470, 90,60);//The parameters are x point coordinate, y point coordinate, circle radius 60

Text application in pixi (initial)

  • First you need to create a text class

    var basicText = new PIXI.Text('Basic text in pixi');

  • You can then set the x and y coordinates

    basicText.x = 30;

  • ##Complex styled class

    var style = new PIXI.TextStyle({
        fontFamily: 'Arial',  //字体
        fontSize: 36,         //字体大小
        fontStyle: 'italic',  //字体类型(斜体)
        fontWeight: 'bold',   //加粗
        fill: ['#ffffff', '#00ff99'], //由上到下的过渡颜色
        stroke: '#4a1850',    //文字边框颜色
        strokeThickness: 5,   //文字边框粗细
        dropShadow: true,     //阴影
        dropShadowColor: '#000000', //阴影颜色
        dropShadowBlur: 4,          //阴影模糊程度
        dropShadowAngle: Math.PI / 6, //阴影角度
        dropShadowDistance: 6,  //阴影距离
        wordWrap: true,        //自动换行
        wordWrapWidth: 440      
    });
    
    var richText = new PIXI.Text('Rich text with a lot of options', style);
    richText.x = 30;
    richText.y = 180;
    Copy after login

    The above is the detailed content of A preliminary study on pixi framework in Javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

See all articles