sampleutil サンプル=>JavaScript
最初の文字を押すとスタートします。  START!  FINISH!
/**
 * Simple util example
 */

define(function () {
    
    var sampleutil = {
        
        // Array of content blurbs
        content: [
            'This is sample content one.',
            'This is sample content two.',
            'This is sample content three.'
        ],
        
        // Method to randomly choose content blurb
        getContent: function () {
            var pick = Math.floor(Math.random()*this.content.length);
            return this.content[pick];
        }
        
    };
    
    return sampleutil;
    
});
!1
"2
#3
$4
%5
&6
'7
(8
)9
00
=-
~^
|\
Qq
Ww
Ee
Rr
Tt
Yy
Uu
Ii
Oo
Pp
`@
{[
EnterEnter
Aa
Ss
Dd
Ff
Gg
Hh
Jj
Kk
Ll
+;
*:
}]
Shift
Zz
Xx
Cc
Vv
Bb
Nn
Mm
<,
>.
?/
_\
Shift
Space
投稿者test 投稿日2013-10-05 お気に入り 閲覧数
sample
ログインするとランキングに参加できます。