dir.by  
  Поиск  
Компьютер, программы
PixiJS - JavaScript library for fast graphics drawing 2D (is the fastest, most flexible renderer graphic 2D, WebGL)
 Example "Drawing a picture" | PixiJS Version 5.1.6 
посмотрели 5902 раз
обновлено: 22 March 2020
Example we look, we test
File structure
D:/my_example_pixijs
        1.html
        images
                cat.png
Picture cat.png

 
File 1.html
  Html  
<html>
     <head>
          <script src="https://dir.by/example_lib/pixi_js/5.1.6/pixi.min.js"></script>
     </head>

     <body>
          <div>
               <canvas id="game-canvas" width="512" height="384"></canvas>
          </div>
     </body>

     <script>
          //Create a Pixi Application
          let app = new PIXI.Application({
               width: 256,
               height: 256,
               antialias: true,
               transparent: false,
               resolution: 1,
               view:document.getElementById("game-canvas")
          });

          //load an image and run the `setup` function when it's done
          PIXI.loader
               .add("images/cat.png")
               .load(setup);

          //This `setup` function will run when the image has loaded
          function setup() {

               // Create the cat sprite
               let cat = new PIXI.Sprite(PIXI.loader.resources["images/cat.png"].texture);

               //Add the cat to the stage
               app.stage.addChild(cat);
          }

     </script>
</html>
Run the file 1.html in the Google Chrome. There is an error !
Error: Access to image at 'file:///D:/my_example_pixijs/images/cat.png' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
The example works when files (1.html, cat.png) posted on web server.

The example does not work when the files (1.html, cat.png) are hosted on your computer.
Decision! To make files work on your computer (1.html, cat.png)
1) Close Google Chrome
2) In the Windows 10 on the desktop, right-click on the icon Google Chrome
2) Open tab "Shortcut"
3) In the "Target" add text: --allow-file-access-from-files
 
Run the file 1.html in the Google Chrome
 
It's working!
 
← Previous topic
PixiJS where to download and how to connect?
 
Next topic →
Example "Drawing a picture with an offset (this is the movement of the background in the game)" | PixiJS Version 5.1.6
 
Your feedback ... Comments ...
   
Your Name
Your comment (www links can only be added by a logged-in user)

Экскурсии по Москве Экскурсии по Москве: пешеходные, автобусные и речные прогулки на любой вкус
  Объявления  
  Объявления  
 
What the PixiJS ?
PixiJS where to download and how to connect?
Example "Drawing a picture" | PixiJS Version 5.1.6
Example "Drawing a picture with an offset (this is the movement of the background in the game)" | PixiJS Version 5.1.6
WWW sites to explore PixiJS
Sites to explore PixiJS

  Ваши вопросы присылайте по почте: info@dir.by  
Яндекс.Метрика