aboutsummaryrefslogtreecommitdiff
path: root/files/ja/mdn/structures/live_samples
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
commit6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch)
tree890e3e27131be010d82ef957fa68db495006cb0e /files/ja/mdn/structures/live_samples
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip
unslug ja: move
Diffstat (limited to 'files/ja/mdn/structures/live_samples')
-rw-r--r--files/ja/mdn/structures/live_samples/simple_live_sample_demo/index.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/files/ja/mdn/structures/live_samples/simple_live_sample_demo/index.html b/files/ja/mdn/structures/live_samples/simple_live_sample_demo/index.html
deleted file mode 100644
index 9e550d81ac..0000000000
--- a/files/ja/mdn/structures/live_samples/simple_live_sample_demo/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: ライブコードサンプルの簡単なデモ
-slug: MDN/Structures/Live_samples/Simple_live_sample_demo
-tags:
- - MDN Meta
- - Structures
- - 例
-translation_of: MDN/Structures/Live_samples/Simple_live_sample_demo
----
-<div>{{MDNSidebar}}</div>
-
-<h2 id="The_example" name="The_example">例</h2>
-
-<p id="Simple_example_of_a_live_demo">これは、MDN でライブデモを行う方法を示す非常に簡単な例です。詳細については、<a href="/ja/docs/MDN/Contribute/Structures/Live_samples">ライブサンプル</a>を参照してください。</p>
-
-<pre class="brush: html notranslate">&lt;form&gt;
- &lt;label&gt;Try me&lt;input type="text" name="name"&gt;&lt;/label&gt;
- &lt;input type="submit" value="go"&gt;
-&lt;/form&gt;</pre>
-
-<pre class="brush: css notranslate">form {
- border-radius: 10px;
- background: powderblue;
-}</pre>
-
-<pre class="brush: js notranslate">var f = document.querySelector('form');
-
-f.addEventListener('submit', function(ev) {
- ev.preventDefault();
- document.querySelectorAll('input')[1].value = 'sending';
-}, false);</pre>
-
-<p>{{ EmbedLiveSample('The_example', '', '', '') }}</p>
-
-<div class="blockIndicator note">
-<p>注: ローカライズしたページでは、最初の引数の値は、サンプルを含む見出しの ID と同じにしてください.</p>
-</div>