2017년 12월 28일 목요일

[Game]Crayon Pentix - a block drop game

Pentix is similar to Tetris, but more difficult.
It is similar to Tetris in that the score is increased if you fill out the line.
But it is harder than Tetris in that blocks falling from above are
made up with 5 tiles instead of 4.

Here is my Pentix game.

Source

-------

Crayon Pentix


A Block Drop Game

A block of five tiles is called a pentomino.
Pentix is a game of falling pentomino.
Crayon Pentix is web and android version of pentix game.
When you rotate this block and stack it up and fill one row tightly,
the line disappears and the score goes up.
It is a game that competes to see who gets rid of more lines.


스크린샷 이미지

스크린샷 이미지

스크린샷 이미지

[Utility]SimpleGraphJS - a javascript chart module

This Javascript module is a chart related library.

It was originally created for business needs, 
but has been extended for general use.

Samples can be found at the following site.
Samples


The source is in my github repository.
GITHUB


MIT license.

------------

Bar Graph

<script src="https://truemaxdh.github.io/simpleGraph.js/simpleGraph.js"> </script> <div id="BarGraph" style="height: 300; width: 500;"> </div> <div id="tblBarGraph"> </div> <script> var gr = new simpleGraph(); var vals = [723, 37, 127, 25, 809, 610]; var lbls = ['label1', 'label2', 'label3', 'label4', 'label5', 'label6']; gr.drawBarGraph("BarGraph", lbls, vals); gr.showColorLabelValueTable("tblBarGraph", lbls, 30, vals); </script>
809
label1723
label237
label3127
label425
label5809
label6610

Line Graph

<script src="https://truemaxdh.github.io/simpleGraph.js/simpleGraph.js"> </script> <div id="LineGraph" style="height: 300; width: 500;"> </div> <div id="tblLineGraph"> </div> <script> var gr = new simpleGraph(); var lbl_hour = [ '1', '2', '3', '4', '5', '6',]; var vals = [ 56, 56, 54, 55, 55, 51, 56, 83, 71, 33, 2, 18, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 15, 0,]; var lbls = [ 'Label1.', 'Label2', 'Label3', 'Label4',]; gr.drawLineGraph("LineGraph", lbl_hour, vals); gr.showColorLabelTable("tblLineGraph", lbls, 30); </script>
83123456
Label1.
Label2
Label3
Label4

<script src="https://truemaxdh.github.io/simpleGraph.js/simpleGraph.js"> </script> <div id="LineGraph2" style="height: 300; width: 500;"> </div> <div id="tblLineGraph2"> </div> <script> var gr = new simpleGraph(); var lbl_day = [ '20171201', '20171202', '20171203', '20171204', '20171205', '20171206', '20171207', '20171208',]; var vals = [ 61, 23, 21, 36, 66, 50, 35, 7, 44, 2, 0, 34, 51, 31, 20, 12, 7, 1, 5, 2, 11, 5, 1, 0, 87, 27, 24, 60,103, 77, 52, 10, ]; var lbls = [ 'Label1.', 'Label2', 'Label3', 'Label4',]; gr.drawLineGraph("LineGraph2", lbl_day, vals, {rotate : -30, w : 45, h : 40}); gr.showColorLabelTable("tblLineGraph2", lbls, 30); </script>
1032017120120171202201712032017120420171205201712062017120720171208
Label1.
Label2
Label3
Label4

Pie Graph

&lt;script src="https://truemaxdh.github.io/simpleGraph.js/simpleGraph.js"&gt; &lt;/script&gt; &lt;div id='PieGraph' style="width:300; height:300;"&gt;&lt;/div&gt; &lt;p id='tblPieGraph'&gt;&lt;/p&gt; &lt;script&gt; var gr = new simpleGraph(); var vals = [163, 21, 3, 15, 25, 55, ]; var lbls = ['label1', 'label2', 'label3', 'label4', 'label5', 'label6']; gr.drawPieGraph("PieGraph", vals); gr.showColorLabelValueTable("tblPieGraph", lbls, 30, vals); &lt;/script&gt;
label1163
label221
label33
label415
label525
label655

[Entertainment] Fireworks Interactive - Virtual Fireworks Show

Fireworks Interactive Virtual Fireworks Show Fireworks Interactive is an app of  Virtual Fireworks Show. PLAY   APPSTORE