★Canvasリファレンス

結果はどのようにランク付けされますか?
順位はどのように決まるのでしょうか?
2Ranking the results of your bets can be a complex task depending on your specific situation and goals. There are many different ways to rank betting results, and the choice of method often depends on what you want to achieve. The general approach for ranking betting results is as follows:
Read in-detail

私たちはカジノサイトを独自にレビューしています。当社のリンクを通じてサインアップすると、追加料金なしで当社に手数料が発生する場合があります。

context . fillText(text, x, y [, maxWidth ] ) …… 塗りつぶしのテキストを指定座標に描画する
Internet Explorer9
Firefox2Firefox3Firefox4
Google Chrome1Google Chrome2Google Chrome3Google Chrome4Google Chrome5Google Chrome6
Safari3Safari4Safari5
Opera9Opera10
広告



fillText(text, x, y [, maxWidth ] )メソッドは、塗りつぶしのテキストを指定座標に描画する際に使用します。

引数textは描画する文字列を、引数(x, y)はテキストを描画する座標を表します。
引数maxWidthは省略可能ですが、指定した場合にはテキストの描画領域の最大幅を表します。
最大幅を指定すると、テキストがその中に収まるように縮められます。
最大幅に0以下を指定すると、テキスト描画が中止されます。

フォントを指定する場合にはfont属性、
揃え位置を指定する場合にはtextAlign属性、
ベースラインを指定する場合にはtextBaseline属性
を使用します。
また、色を指定する場合には、fillStyle属性を使用します。
fillText()メソッドによるテキスト描画では、strokeStyle属性の指定は無視されます。

テキストの描画は現在のパスには影響を与えません。
また、影・透明度・切り抜き・合成の対象となります。

■引数(値)の説明

text
描画する文字列
x
テキストを配置するx座標
y
テキストを配置するy座標
maxWidth
テキストの描画領域の最大幅

■使用例

HTML + JavaScriptソース

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>canvasで図形を描く</title>
<script type="text/javascript">
<!--
function test() {
  //描画コンテキストの取得
  var canvas = document.getElementById('sample');
  if (canvas.getContext) {
    var context = canvas.getContext('2d');
    //ここに具体的な描画内容を指定する
    //テキスト描画のスタイルを指定する
    context.fillStyle = "blue";
    context.font = "30px 'MS ゴシック'";
    context.textAlign = "left";
    context.textBaseline = "top";

    //塗りつぶしのテキストを、座標(20, 75)の位置に最大幅200で描画する
    context.fillText("abcABCあいう漢字", 20, 75, 200);
  }
}
//-->
</script>
</head>
<body onLoad="test()">
<h2>Canvasで図形を描く</h2>
<canvas width="300" height="150" id="sample" style="background-color:yellow;">
図形を表示するには、canvasタグをサポートしたブラウザが必要です。
</canvas>
</body>
</html>
↓↓↓

ブラウザ上の表示

Canvasで図形を描く


図形を表示するには、canvasタグをサポートしたブラウザが必要です。

■関連項目

<canvas> …… 図形を描くHTML5から追加
広告



カジノファインダー

どのカジノが自分に最適か分からないですか?

Easily find your perfect casino in under a minute, no sign up necessary.