File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- # Ruby Wasmくじ引き
1
+ # ruby.wasmくじ引き
2
2
3
3
[ ![ GitHub] ( https://img.shields.io/badge/GitHub-increments%2Frubykaigi--2025--ruby--wasm--lottery-green?style=flat-square&logo=github )] ( https://github.com/increments/rubykaigi-2025-ruby-wasm-lottery )
4
4
5
- RubyKaigi 2025 Qiitaブース展示用のRuby WebAssemblyデモアプリケーションです 。ruby-wasm-vdomを使用したインタラクティブなくじ引きゲームを実装しています。
5
+ RubyKaigi 2025 Qiitaブース展示用のruby.wasmデモアプリケーションです 。ruby-wasm-vdomを使用したインタラクティブなくじ引きゲームを実装しています。
6
6
7
7
[ こちらからデモを試せます] ( https://increments.github.io/rubykaigi-2025-ruby-wasm-lottery/ )
8
8
@@ -12,7 +12,7 @@ RubyKaigi 2025 Qiitaブース展示用のRuby WebAssemblyデモアプリケー
12
12
13
13
## 特徴
14
14
15
- - ** Ruby Wasm ** : ブラウザ上でRubyコードを実行
15
+ - ** ruby.wasm ** : ブラウザ上でRubyコードを実行
16
16
- ** Virtual DOM** : 効率的なDOM更新による高速なUIレンダリング
17
17
- ** インタラクティブ抽選** : 確率ベースのくじ引きロジック
18
18
- ** アニメーション効果** : 抽選中の動的な視覚効果と紙吹雪
@@ -26,7 +26,7 @@ RubyKaigi 2025 Qiitaブース展示用のRuby WebAssemblyデモアプリケー
26
26
27
27
## 技術スタック
28
28
29
- - [ Ruby Wasm ] ( https://github.com/ruby/ruby.wasm ) : ブラウザで実行可能なRuby
29
+ - [ ruby.wasm ] ( https://github.com/ruby/ruby.wasm ) : ブラウザで実行可能なRuby
30
30
- [ ruby-wasm-vdom] ( https://github.com/getty104/ruby-wasm-vdom ) : Ruby WasmとVirtual DOMの統合
31
31
- HTML5 / CSS3: モダンなUI実装
32
32
- JavaScript: ブラウザAPIとのインターフェース
Original file line number Diff line number Diff line change 3
3
< head >
4
4
< meta charset ="UTF-8 ">
5
5
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
- < title > Ruby Wasmくじ引き </ title >
6
+ < title > ruby.wasmくじ引き </ title >
7
7
< style >
8
8
/* ベーススタイル */
9
9
* {
706
706
707
707
# メインコンテナ
708
708
h ( :div , { class : "lottery-container" } , [
709
- h ( :h1 , { } , [ "✨ Ruby Wasmくじ引き ✨" ] ) ,
709
+ h ( :h1 , { } , [ "✨ ruby.wasmくじ引き ✨" ] ) ,
710
710
h ( :div , { class : "lottery-box" } , [ content ] ) ,
711
711
h ( :button , {
712
712
onclick : - > ( e ) { actions [ :draw_lottery ] . call ( state , { actions : actions } ) } ,
713
713
disabled : state [ :drawing ] ? true : nil
714
714
} . compact , [ button_text ] ) ,
715
715
h ( :div , { class : "event-info" } , [
716
- "RubyKaigi 2025 Qiitaブース展示 - ruby-wasm-vdomデモアプリケーション - Authored by Cline and Qiita developers"
716
+ "RubyKaigi 2025 Qiitaブース展示 - ruby.wasmとruby -wasm-vdomによるデモアプリケーション - Authored by Cline and Qiita developers"
717
717
] )
718
718
] )
719
719
}
You can’t perform that action at this time.
0 commit comments