diff options
Diffstat (limited to 'files/pl/sandbox/index.html')
-rw-r--r-- | files/pl/sandbox/index.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/files/pl/sandbox/index.html b/files/pl/sandbox/index.html new file mode 100644 index 0000000000..f621a15abc --- /dev/null +++ b/files/pl/sandbox/index.html @@ -0,0 +1,70 @@ +--- +title: MoSandbox +slug: Sandbox +translation_of: Sandbox +--- +<h2 id="I_Love_Travis_Tuohy" name="I_Love_Travis_Tuohy">Cześć WSZYSTKIM</h2> + +<h2 id="auto-generate_header_id_test_if...else">auto-generate header id test : if...else</h2> + +<h3 id="Cześć_WSZYSTKIM">Cześć WSZYSTKIM</h3> + +<h2 id="<h1>Cześć_WSZYSTKIM<h1>_<p>To_jest_<i>świetny<i>_akapit<p>"><h1>Cześć WSZYSTKIM</h1><br> + <p>To jest <i>świetny</i> akapit</p></h2> + +<p>Jest to eksperymentalna strona dla ludzi którzy chcą zacząć współpracę z MDM contributor.</p> + +<pre class="brush: css">h1{ +color: yellow; +} +p{ +font-size: low; +}</pre> + +<h2 id="Wynik"><strong>Wynik</strong></h2> + +<p>{{ EmbedLiveSample('Hello_World', '', '', '', 'Sandbox') }}</p> + +<h2 id="Test_Template" name="Test_Template">Testowy wygląd</h2> + +<h3 id="Kod_HTML">Kod HTML</h3> + +<pre class="brush: html"><canvas id='the_canvas'></canvas></pre> + +<h3 id="Kod_CSS">Kod CSS</h3> + +<pre class="brush: css">body, html, canvas {width:100%; height:100%;} +</pre> + +<h3 id="Kod_JavaScript">Kod JavaScript</h3> + +<pre class="brush: js">var canvas = document.getElementById('the_canvas'); +var ctx = canvas.getContext('2d'); + +ctx.fillRect(50, 50, 100, 100); +</pre> + +<p> </p> + +<p>{{ EmbedLiveSample('Test_Template') }}</p> + +<h2 id="Inny_livesample">Inny livesample</h2> + +<p>Kod JavaScript</p> + +<pre class="brush: js">const result = 1 + 1; +document.body.innerHTML += result; +</pre> + +<p>Wyjście:<br> + {{ EmbedLiveSample('Another_livesample', 100, 20) }}<br> + Koniec wyjścia<br> + </p> + +<p>Kod HTML</p> + +<pre class="brush: html"><div>Hola Mundo</div></pre> + +<p> </p> + +<p> </p> |