atlasjs.com atlasjs.com

atlasjs.com

Atlas.jsブログ

Webブラウザで動作する、教育用JavaScriptゲームエンジン、Atlas.jsに関する知識共有ブログです。

http://www.atlasjs.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR ATLASJS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

September

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.6 out of 5 with 9 reviews
5 star
3
4 star
1
3 star
4
2 star
0
1 star
1

Hey there! Start your review of atlasjs.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1.5 seconds

FAVICON PREVIEW

  • atlasjs.com

    16x16

  • atlasjs.com

    32x32

  • atlasjs.com

    64x64

  • atlasjs.com

    128x128

  • atlasjs.com

    160x160

  • atlasjs.com

    192x192

CONTACTS AT ATLASJS.COM

SAKURA Internet Inc.

steelydylan

9F, 1-8-14, ●●●●●●●●●●●●chi, Chuo-ku

Os●●ka , Osaka, 541-0054

JAPAN

8181●●●●4830
ni●●●●●●●@sakura.ad.jp

View this contact

SAKURA Internet Inc.

Internet SAKURA

9F, 1-8-14, ●●●●●●●●●●●●chi, Chuo-ku

Os●●ka , Osaka, 541-0054

JAPAN

8181●●●●4830
ni●●●●●●●@sakura.ad.jp

View this contact

SAKURA Internet Inc.

Internet SAKURA

9F, 1-8-14, ●●●●●●●●●●●●chi, Chuo-ku

Os●●ka , Osaka, 541-0054

JAPAN

8181●●●●4830
ni●●●●●●●@sakura.ad.jp

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
2014 April 19
UPDATED
2014 April 19
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

DOMAIN AGE

  • 10

    YEARS

  • 1

    MONTHS

  • 13

    DAYS

NAME SERVERS

1
ns1.dns.ne.jp
2
ns2.dns.ne.jp

REGISTRAR

MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE

MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE

WHOIS : whois.melbourneit.com

REFERRED : http://www.melbourneit.com

CONTENT

SCORE

6.2

PAGE TITLE
Atlas.jsブログ | atlasjs.com Reviews
<META>
DESCRIPTION
Webブラウザで動作する、教育用JavaScriptゲームエンジン、Atlas.jsに関する知識共有ブログです。
<META>
KEYWORDS
1 atlasjsブログ
2 menu
3 ドキュメント
4 atlasエディタ
5 フォーラム
6 atlas editor
7 atlasエディタの見た目を変更中です
8 ツイート
9 firefoxで実行結果が表示されないバグがありましたが、それも解決しました
10 firefoxユーザの方も是非atlas editorを使ってみてくださいね
CONTENT
Page content here
KEYWORDS ON
PAGE
atlasjsブログ,menu,ドキュメント,atlasエディタ,フォーラム,atlas editor,atlasエディタの見た目を変更中です,ツイート,firefoxで実行結果が表示されないバグがありましたが、それも解決しました,firefoxユーザの方も是非atlas editorを使ってみてくださいね,atlasjsのチートシート,こんにちは,クラスの作成,enterframeやkeydownを使うことが出来る } ;,スプライトの操作,シーン登録,共通メソッド,マップ作成,フィット前,フィット後
SERVER
Apache/2.4.29
POWERED BY
PHP/5.4.45
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Atlas.jsブログ | atlasjs.com Reviews

https://atlasjs.com

Webブラウザで動作する、教育用JavaScriptゲームエンジン、Atlas.jsに関する知識共有ブログです。

INTERNAL PAGES

atlasjs.com atlasjs.com
1

Atlas.jsブログ

http://atlasjs.com/page/2

Var map = new Map(./images/map.png,16,16);/ 使用するマップ、縦の大きさ、横の大きさ. Gameload([./images/char.png,image]);/ 指定した画像のパスをimageという名前にして読み込む. Var sprite = new Sprite(image,x,y);/ 縦:x、横:yの大きさで画像imageを切り取る sprite.rot = Math.PI;/ spriteの回転量 sprite.frame = 3; / スプライト番号の指定 sprite.alpha = 0.5 / スプライトのアルファ値 透明度 の設定. Sprite.setImage(image2,a,b);/ 今の画像を新しくimage2に切り換えて縦:a、横:bの大きさにimage2を切り取る /*もしくは*/ sprite.setImage(image2,x,y);/ 今の画像を新しくimage2に切り替え sprite.setISpriteSize(a,b);/ 切り取りサイズを縦:a、横:bに変更. ローディングシーンの設定*/ var scene =...

2

Atlas.jsブログ

http://atlasjs.com/forum

3

丸を動かしてみよう 2! | Atlas.jsブログ

http://atlasjs.com/entry-13.html

ここでは, Shape.Circle classを元にあたらしいMoveCircle classを作ることにします. MoveCircle = Atlas.createClass(Atlas.Shape.Circle,{ initialize: function () {. Var Circle = new MoveCircle();. Blog comments powered by Disqus.

4

findChildを使ってみよう | Atlas.jsブログ

http://atlasjs.com/entry-33.html

Sprite.touchStart = function(e){ var target = this.parent.getChild({name:hero}); if(target.intersect(e.x,e.y) { target.remove(); } }. Var sprite = this.parent.getChild({name: 'player'}); if (sprite & this.hitTest(sprite) { sprite.remove(); } if (this.x 0) { this.remove(); }. 例 this.getChild({kind:"person",gender:"male"});. Blog comments powered by Disqus.

5

Atlas.jsの機能〜スプライト〜 | Atlas.jsブログ

http://atlasjs.com/entry-31.html

Gameload([./images/char.png,image]);/ 指定した画像のパスをimageという名前にして読み込む. Var sprite = new Sprite(image,x,y);/ 縦:x、横:yの大きさで画像imageを切り取る sprite.rot = Math.PI;/ spriteの回転量 sprite.frame = 3; / スプライト番号の指定 sprite.alpha = 0.5 / スプライトのアルファ値 透明度 の設定. Sprite.setImage(image2,a,b);/ 今の画像を新しくimage2に切り換えて縦:a、横:bの大きさにimage2を切り取る /*もしくは*/ sprite.setImage(image2,x,y);/ 今の画像を新しくimage2に切り替え sprite.setISpriteSize(a,b);/ 切り取りサイズを縦:a、横:bに変更. Blog comments powered by Disqus.

UPGRADE TO PREMIUM TO VIEW 15 MORE

TOTAL PAGES IN THIS WEBSITE

20

SOCIAL ENGAGEMENT



OTHER SITES

atlasjobsus.com atlasjobsus.com

Atlas Jobs US

Publish your ad for free. Advertising - Public Relations. Arts - Entertainment - Publishing. Restaurant - Food Service. Accounting - Finance (0). Advertising - Public Relations (0). Arts - Entertainment - Publishing (0). Clerical - Administrative (0). Education - Training (0). Engineering - Architecture (0). Manufacturing - Operations (0). Non-profit - Volunteer (0). Restaurant - Food Service (0). July 22, 2014. Publish your ad for free. This website is proudly using the classifieds scripts.

atlasjones.com atlasjones.com

Atlas Jones & Co. is a small publishing company based in Castlemaine, Australia.

Atlas Jones and Co. Atlas Jones and Co. is a small publishing company in Castlemaine. Specialising in childrens books. The Very Hungry Bum. The Hungry Bum Yoga Book. Where the Wild Bums Are. The Very Hungry Bum. The Hungry Bum Yoga Book. Where the Wild Bums Are. The Very Hungry Bum. The Hungry Bum Yoga Book. Where the Wild Bums Are. The Hungry Bum Yoga Book. The Hungry Bum takes us through some basic yoga moves (though yoga on the beach isn’t all it’s cracked up to be). Ldquo;Oh dear” - Publisher. If you...

atlasjor.com atlasjor.com

ATLAS SHIPPING CORP.

atlasjournal.org atlasjournal.org

Login • ProcessWire • atlasjournal.org

ProcessWire 2.6.0 2015.

atlasjourneys.com atlasjourneys.com

Default OaO Sedo Frameset

Device does not support frames.

atlasjs.com atlasjs.com

Atlas.jsブログ

Var クラス名 = Atlas.createClass(元になるクラス,{ initialize: function(クラスの引数1,クラスの引数2, ){/ 初期化処理 this.inherit(元になるクラスの継承); / 位置の設定などを入れる }, / ここに処理を書く。 Gameload([使う画像のurl,使う画像の名前]);/ 画像のロード var 画像のオブジェクト名 = new Sprite(画像名,画像の縦の大きさ,画像の横の大きさ); 画像のオブジェクト名.frame/ 画像のフレーム番号 画像のオブジェクト名.animate([アニメーションに使いたいフレーム番号1,アニメーションに使いたいフレーム番号2, ],[]の動作に要するフレーム数);. Var 新しく登録したいシーンのオブジェクト = new Scene(); シーン登録用のオブジェクト.setImage(変更したい背景画像);/ 背景画像を設定する game.pushScene(新しく登録したいシーンのオブジェクト);/ シーンの登録. Sprite.getSound(音楽素材の名前); sprite&#4...

atlasju.skyrock.com atlasju.skyrock.com

atlasju's blog - retour a la maison - Skyrock.com

Retour a la maison. Voilà je dois partir loin de toi. mais je vais. 31/10/2015 at 10:09 AM. 29/12/2015 at 7:01 AM. Encore une foie j'ai voulu croire en ce. Subscribe to my blog! Encore une foie j'ai voulu croire en ce concept dont tout le monde rève et qui pourtant apporte plus de soufrances que de bonheur. En gros je ne dois pas avoir la mème définition de ce qu'est le sentiment amoureux. Je n'ai franchement plus envie pour le moment de faire prendre pour un con! Parti d'airsoft au mont faron à toulon.

atlasjudgmentrecovery.net atlasjudgmentrecovery.net

Home Page

Getting the money that's rightfully yours. Winning a civil judgment in court occurs every day, but did you know that roughly 75% of all judgment creditors never receive a dime, because they either do not have the time, inclination, or knowledge on how to locate the debtor, his or her assets, including owned homes, bank accounts, or even employment information for garnishment of wage purposes. There is no out of pocket cost.

atlasjuggs.wordpress.com atlasjuggs.wordpress.com

Atlas Juggs | Yeahhhhh BAYBEEEEEE!

July 11, 2007} Gorgeous CalendAr with Atlas, Bolton, Cheney, Newt, Kaufman, SWIMSUITS too. LOOK AT MEEEE BAYBEE! I’M MISS JULY. I’m MISS EVERYTHING! Tawking to Vice President. I just couldn’t stop. Atlasjuggs @ 6:43 am [filed under Fame! I'm Gonna Live Forever. July 10, 2007} I’m Famous, Baybee! Atlasjuggs @ 3:50 pm [filed under Fame! I'm Gonna Live Forever. September 15, 2006} T&A. Atlasjuggs @ 4:01 pm [filed under My Juggs. August 27, 2006} This Is SO Not The Futchah! I didn’t even notice it. August 2,...

atlasjuice.com atlasjuice.com

Healthy Energy Drink – Organic Fitness Beverage – Drinking Water Alternative – Atlas Juice

If you're new here, you may want to subscribe to my RSS feed. Which One of These 5 Describes You the Best? 8211; “I hate drinking water – but force myself to do it.”. 8211; “I used to love water – but now, not as much – so i don’t think I hydrate properly.”. 8211; “I enjoy drinking water – but I do appreciate a healthy and flavorful alternative sometimes.”. Insider’s e-Guide to Optimal Health and Fitness Hydration. Download FREE Digital Version Now. Print version sells for $14.97]. 8211; “I would l...

atlasjungle.com atlasjungle.com

Atlas Jungle