JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _samples / skins.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!--\r
3 Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.\r
4 For licensing, see LICENSE.html or http://ckeditor.com/license\r
5 -->\r
6 <html xmlns="http://www.w3.org/1999/xhtml">\r
7 <head>\r
8         <title>Skins &mdash; CKEditor Sample</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
10         <script type="text/javascript" src="../ckeditor.js"></script>\r
11         <script src="sample.js" type="text/javascript"></script>\r
12         <link href="sample.css" rel="stylesheet" type="text/css" />\r
13 </head>\r
14 <body>\r
15         <h1 class="samples">\r
16                 CKEditor Sample &mdash; Skins\r
17         </h1>\r
18         <div class="description">\r
19         <p>\r
20                 This sample shows how to automatically replace <code>&lt;textarea&gt;</code> elements\r
21                 with a CKEditor instance using a specific <a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.skin">skin</a>.\r
22         </p>\r
23         <p>\r
24                 CKEditor with a specified skin (in this case, the "Office 2003" skin) is inserted with a JavaScript call using the following code:\r
25         </p>\r
26         <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
27         {\r
28                 <strong>skin : 'office2003'</strong>\r
29         });</pre>\r
30         <p>\r
31                 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
32                 the <code>&lt;textarea&gt;</code> element to be replaced.\r
33         </p>\r
34         </div>\r
35 \r
36         <!-- This <div> holds alert messages to be display in the sample page. -->\r
37         <div id="alerts">\r
38                 <noscript>\r
39                         <p>\r
40                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
41                                 support, like yours, you should still see the contents (HTML data) and you should\r
42                                 be able to edit it normally, without a rich editor interface.\r
43                         </p>\r
44                 </noscript>\r
45         </div>\r
46         <form action="sample_posteddata.php" method="post">\r
47         <h2 class="samples">&quot;Kama&quot; skin</h2>\r
48         <p>The default skin used in CKEditor. No additional configuration is required.</p>\r
49                 <p>\r
50                         <textarea cols="80" id="editor_kama" name="editor_kama" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
51                         <script type="text/javascript">\r
52                         //<![CDATA[\r
53 \r
54                                 CKEDITOR.replace( 'editor_kama',\r
55                                         {\r
56                                                 skin : 'kama'\r
57                                         });\r
58 \r
59                         //]]>\r
60                         </script>\r
61                 </p>\r
62         <h2 class="samples">&quot;Office 2003&quot; skin</h2>\r
63         <p>Use the following code to configure a CKEditor instance to use the "Office 2003" skin.</p>\r
64 <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
65         {\r
66                 <strong>skin : 'office2003'</strong>\r
67         });</pre>\r
68                 <p>\r
69                         <textarea cols="80" id="editor_office2003" name="editor_office2003" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
70                         <script type="text/javascript">\r
71                         //<![CDATA[\r
72 \r
73                                 CKEDITOR.replace( 'editor_office2003',\r
74                                         {\r
75                                                 skin : 'office2003'\r
76                                         });\r
77 \r
78                         //]]>\r
79                         </script>\r
80                 </p>\r
81                 <h2 class="samples">&quot;V2&quot; skin</h2>\r
82                 <p>Use the following code to configure a CKEditor instance to use the "V2" skin.</p>\r
83 <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
84         {\r
85                 <strong>skin : 'v2'</strong>\r
86         });</pre>\r
87                         <textarea cols="80" id="editor_v2" name="editor_v2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
88                         <script type="text/javascript">\r
89                         //<![CDATA[\r
90 \r
91                                 CKEDITOR.replace( 'editor_v2',\r
92                                         {\r
93                                                 skin : 'v2'\r
94                                         });\r
95 \r
96                         //]]>\r
97                         </script>\r
98         </form>\r
99         <div id="footer">\r
100                 <hr />\r
101                 <p>\r
102                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
103                 </p>\r
104                 <p id="copy">\r
105                         Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
106                         Knabben. All rights reserved.\r
107                 </p>\r
108         </div>\r
109 </body>\r
110 </html>\r