"canvas"の翻訳 英語に:
辞書 日本-英語
例 (レビューされていない外部ソース)
新しいcanvas DOMオブジェクトを | Alright, now that we've seen this in action, let's go ahead and use it ourselves. |
GRITSではCanvasウィンドウ内部の 幅と高さを入力してCanvasを指定し | Now, it's worth pointing out, that any time the user would resize the screen, the canvas will remain this size. |
The infinitely extending canvas becomes dyed in hope | There are no useless lives, let's accept each other |
Or spill tea or coffee on the canvas. | Or run over the canvas with a car and print a tire trace on it... |
レンダリングエンジンには HTML5 Canvas を使い | The game client is written in JavaScript and uses |
In the case of that white canvas I said, | For example In the case of that white canvas I said, |
div用とcanvas用にそれぞれIDを設定します divにはgameContentを設定し canvasにはgameCanvasを設定します | We're going to have to create a new element, using document.createElement, both for the div and for the canvas, then we'd like to set their ids. |
コンテキストがあとで Canvas画像のモディファイに使用する | DOM as a DOM element. |
Or run over the canvas with a car and print a tire trace on it... | Let's try to make a cat walk on the canvas... |
便利なことにCanvas要素では左上の座標が(0,0)です Canvas上では左上の座標が起点になります | Which as you can see placed the top left corner of the image, 192 by 192 pixels up from the top left corner of the canvas, which has been conveniently placed at location zero, zero on the page. |
Canvasには幅と高さの2つの属性しかなく | Canvas is a new HTML5 element which exposes APls allowing you to draw graphs, images, and text to portions of the page. |
面倒は抜きにCanvasを作成してみましょう | Now, without further ado, let's create our first canvas. |
HTML5ではCanvas要素と呼ばれるDOMを使用します | How to write a 2D tile based rendering engine. |
Canvasウィンドウ内の全領域を 使えるようにしています | For the purposes of GRlTS, we actually use the window.innerwidth and window innerheight. sizes for our canvas, allowing it to occupy the fullscreen for the user. |
最後に両方とも追加します canvasをdivに追加し | For the div, we'll set it to gameContent and for the canvas we'll set it to gameCanvas. |
この4つの値を使ってCanvas上に描画しましょう | The next two are width and height, which represent the size of this chart in the atlas itself. |
各フレームがCanvas上で クリアされていないことが原因です | You actually get each of the frames drawn over each other, creating this sort of halo effect. There's a reason for this. |
ここではCanvasのコンテキストについて 説明したいと思います | The basic HTML for grabbing the canvas object is pretty straightforward. We've seen this before. |
ユーザが画面のサイズを変えても Canvasのサイズは変わりません | In this simple example, we set the width and height to 1200 by 720 respectively. |
引数にはpやformやcanvasといった要素名が入ります | If it doesn't exist we use the document.createElement method specified at p tag. |
Canvas要素上の座標(192,192)に 描画するように変更します | It's a nifty little space where all your questions can be answered. For our next step, why don't you go ahead and fill in the onLoad function that we defined earlier. |
ゲームはあとのレッスンで出てくる Canvasという要素内にあります | The DOM allows us to access and modify our HTML document dynamically, using Javascript. |
Canvas要素をDOMから持ってきた DOM要素と考えてみましょう | The interesting thing that we haven't yet covered is grabbing the context of the canvas. Think of the canvas object that we fetched from the |
Canvasに描画するためには まず画像を読み込む必要があります | The bulk of canvas interaction that GRlTS uses, is through rendering images to the canvas. |
Canvas上のposXとposY座標に 表示する関数です アセットファイルの名前を表すspritenameと | It assumes that it's going to be given a spritename, which represents the name of the loose asset file as well as the position X and position Y on where it wants to render it on the canvas. |
そのためにgetElementByIdを使います divやcanvasも作成します それぞれにIDを設定します divのidにはgameContentを設定し canvasのidにgameCanvasを設定します 最後にそのdivをbodyに追加し | So, the first thing we do, is grab the body dom object using document.getElementByld, with an id of body, and we create a div object, as well as a canvas object, and set their id's appropriately to div.id gameContent and canvas.id gameCanvas and finally, we append the div object to the body and the canvas object to the div. |
HTMLページ内に書かれたCanvas要素を取得して 幅と高さを設定してください | What I'd like you to do is grab the canvas element that we've already specified in our HTML page and set its width and height attributes appropriately. |
Canvas上の座標も設定すると説明しましたね 次へ進む前に重要な項目の | We were able to look at the documentation and see that context.drawlmage allowed us to pass in the image object as well as the position on the canvas we'd like to draw, 192 by 192. |
JavaScriptやブラウザに精通している方は そのレッスンを飛ばして 次のCanvasに進んでください | If you're not already familiar with JavaScript or modern browsers, then we have an optional JavaScript crash course for you to take. |
but to increase the possibility that it occurs let's start by making a Springboard for it. As a kid, when you draw a picture, you were probably given a white canvas. | It seems a bit strange to say One causes a Serendipity but to increase the possibility that it occurs let's start by making a Springboard for it. |
Canvasの起点から 画素数 x値 y値の補正値を取得します 実行してみましょう | By combining these things, we actually get a nice little setup that tells us the number of pixels x and y offset from the origin of the canvas to draw this tile. |
Canvas上で描く際の位置情報が必要になります やり方を説明しましょう ファイルの上部で | Since we're just given a spitename, we need to map where that spritename exists inside of the atlases that we've loaded. |
それが描画可能なサイズを表しています Canvasは大容量blobのピクセルデータや ビットマップデータを効果的に使えるものです | A canvas only has two attributes specific to it, width and height, which specify what size this drawing surface is on your page. |
Canvasの座標は左上の隅を基準にして 画像を配置します Texture Packerはトリミングの際に 画像を左上に移動します | This is important because if you recall the coordinate system of the canvas will place an image according to its top left corner. |
確かにdiv要素が作成されて その中に新しいcanvas要素があり 両方とも適切なIDを持っています | If we open this up into our browser, we can see that we have indeed created a div element and inside that is our new canvas element and both with a proper id. |