Вход Регистрация
Файл: upload/admin/ckeditor/samples/old/magicline/magicline.html
Строк: 249
<?php
<!DOCTYPE html>
<!--
Copyright (c2003-2017CKSource Frederico KnabbenAll rights reserved.
For 
licensingsee LICENSE.md or http://ckeditor.com/license
-->
<
html>
<
head>
    <
meta charset="utf-8">
    <
title>Using Magicline plugin &mdashCKEditor Sample</title>
    <
script src="../../../ckeditor.js"></script>
    <
link rel="stylesheet" href="../../../samples/old/sample.css">
    <
meta name="ckeditor-sample-name" content="Magicline plugin">
    <
meta name="ckeditor-sample-group" content="Plugins">
    <
meta name="ckeditor-sample-description" content="Using the Magicline plugin to access difficult focus spaces.">
</
head>
<
body>
    <
h1 class="samples">
        <
a href="../../../samples/old/index.html">CKEditor Samples</a> &raquoUsing Magicline plugin
    
</h1>
    <
div class="warning deprecated">
        
This sample is not maintained anymoreCheck out its <a href="http://sdk.ckeditor.com/samples/magicline.html">brand new version in CKEditor SDK</a>.
    </
div>
    <
div class="description">
        <
p>
            
This sample shows the advantages of <strong>Magicline</strongplugin
            which is to enhance the editing process
Thanks to this plugin,
            
a number of difficult focus spaces which are inaccessible due to
            browser issues can now be focused
.
        </
p>
        <
p>
            <
strong>Magicline</strongplugin shows a red line with a handler
            which
when clickedinserts a paragraph and allows typingTo see this,
            
focus an editor and move your mouse above the focus space you want
            to access
The plugin is enabled by default so no additional
            configuration is necessary
.
        </
p>
    </
div>
    <
div>
        <
label for="editor1">
            
Editor 1:
        </
label>
        <
div class="description">
            <
p>
                
This editor uses a default <strong>Magicline</strongsetup.
            </
p>
        </
div>
        <
textarea cols="80" id="editor1" name="editor1" rows="10">
            &
lt;table border=&quot;1&quotcellpadding=&quot;1&quotcellspacing=&quot;1&quotstyle=&quot;width100%; &quot;&gt;
                &
lt;tbody&gt;
                    &
lt;tr&gt;
                        &
lt;td&gt;This table&lt;/td&gt;
                        &
lt;td&gt;is the&lt;/td&gt;
                        &
lt;td&gt;very first&lt;/td&gt;
                        &
lt;td&gt;element of the document.&lt;/td&gt;
                    &
lt;/tr&gt;
                    &
lt;tr&gt;
                        &
lt;td&gt;We are still&lt;/td&gt;
                        &
lt;td&gt;able to acces&lt;/td&gt;
                        &
lt;td&gt;the space before it.&lt;/td&gt;
                        &
lt;td&gt;
                        &
lt;table border=&quot;1&quotcellpadding=&quot;1&quotcellspacing=&quot;1&quotstyle=&quot;width100%; &quot;&gt;
                            &
lt;tbody&gt;
                                &
lt;tr&gt;
                                    &
lt;td&gt;This table is inside of a cell of another table.&lt;/td&gt;
                                &
lt;/tr&gt;
                                &
lt;tr&gt;
                                    &
lt;td&gt;We can type&amp;nbsp;either before or after it though.&lt;/td&gt;
                                &
lt;/tr&gt;
                            &
lt;/tbody&gt;
                        &
lt;/table&gt;
                        &
lt;/td&gt;
                    &
lt;/tr&gt;
                &
lt;/tbody&gt;
            &
lt;/table&gt;

            &
lt;p&gt;Two succesive horizontal lines (&lt;tt&gt;HR&lt;/tt&gttags). We can access the space in between:&lt;/p&gt;

            &
lt;hr /&gt;
            &
lt;hr /&gt;
            &
lt;ol&gt;
                &
lt;li&gt;This numbered list...&lt;/li&gt;
                &
lt;li&gt;...is a neighbour of a horizontal line...&lt;/li&gt;
                &
lt;li&gt;...and another list.&lt;/li&gt;
            &
lt;/ol&gt;

            &
lt;ul&gt;
                &
lt;li&gt;We can type between the lists...&lt;/li&gt;
                &
lt;li&gt;...thanks to &lt;strong&gt;Magicline&lt;/strong&gt;.&lt;/li&gt;
            &
lt;/ul&gt;

            &
lt;p&gt;Lorem ipsum dolor sit amet duiMorbi vel turpisNullam et leoEtiam rutrumurna tellus dui vel tincidunt mattis egestasjusto fringilla velmassaPhasellus.&lt;/p&gt;

            &
lt;p&gt;Quisque iaculisdui lectus varius vitaetortorProin lacusPellentesque ac lacusAenean nonummy commodo necpedeEtiam blandit risus elit.&lt;/p&gt;

            &
lt;p&gt;Ut pretiumVestibulum rutrum inadipiscing elitSed in quam in purus sem vitae pedePellentesque bibendumurna sem vel risusVivamus posuere metusAliquam gravida iaculis nislNam enimAliquam erat ac lacus tellus ac felis.&lt;/p&gt;

            &
lt;div style=&quot;border2px dashed greenbackground#ddd; text-align: center;&quot;&gt;
            
&lt;p&gt;This text is wrapped in a&amp;nbsp;&lt;tt&gt;DIV&lt;/tt&gt;&amp;nbsp;elementWe can type after this element though.&lt;/p&gt;
            &
lt;/div&gt;
        </
textarea>
        <
script>

            
// This call can be placed at any point after the
            // <textarea>, or inside a <head><script> in a
            // window.onload event handler.

            
CKEDITOR.replace'editor1', {
                
extraPlugins'magicline',    // Ensure that magicline plugin, which is required for this sample, is loaded.
                
allowedContenttrue        // Switch off the ACF, so very complex content created to
                                            // show magicline's power isn't filtered.
            
} );

        </
script>
    </
div>
    <
br>
    <
div>
        <
label for="editor2">
            
Editor 2:
        </
label>
        <
div class="description">
            <
p>
                
This editor is using a blue line.
            </
p>
<
pre class="samples">
CKEDITOR.replace'editor2', {
    
magicline_color'blue'
});</pre>
        </
div>
        <
textarea cols="80" id="editor2" name="editor2" rows="10">
            &
lt;table border=&quot;1&quotcellpadding=&quot;1&quotcellspacing=&quot;1&quotstyle=&quot;width100%; &quot;&gt;
                &
lt;tbody&gt;
                    &
lt;tr&gt;
                        &
lt;td&gt;This table&lt;/td&gt;
                        &
lt;td&gt;is the&lt;/td&gt;
                        &
lt;td&gt;very first&lt;/td&gt;
                        &
lt;td&gt;element of the document.&lt;/td&gt;
                    &
lt;/tr&gt;
                    &
lt;tr&gt;
                        &
lt;td&gt;We are still&lt;/td&gt;
                        &
lt;td&gt;able to acces&lt;/td&gt;
                        &
lt;td&gt;the space before it.&lt;/td&gt;
                        &
lt;td&gt;
                        &
lt;table border=&quot;1&quotcellpadding=&quot;1&quotcellspacing=&quot;1&quotstyle=&quot;width100%; &quot;&gt;
                            &
lt;tbody&gt;
                                &
lt;tr&gt;
                                    &
lt;td&gt;This table is inside of a cell of another table.&lt;/td&gt;
                                &
lt;/tr&gt;
                                &
lt;tr&gt;
                                    &
lt;td&gt;We can type&amp;nbsp;either before or after it though.&lt;/td&gt;
                                &
lt;/tr&gt;
                            &
lt;/tbody&gt;
                        &
lt;/table&gt;
                        &
lt;/td&gt;
                    &
lt;/tr&gt;
                &
lt;/tbody&gt;
            &
lt;/table&gt;

            &
lt;p&gt;Two succesive horizontal lines (&lt;tt&gt;HR&lt;/tt&gttags). We can access the space in between:&lt;/p&gt;

            &
lt;hr /&gt;
            &
lt;hr /&gt;
            &
lt;ol&gt;
                &
lt;li&gt;This numbered list...&lt;/li&gt;
                &
lt;li&gt;...is a neighbour of a horizontal line...&lt;/li&gt;
                &
lt;li&gt;...and another list.&lt;/li&gt;
            &
lt;/ol&gt;

            &
lt;ul&gt;
                &
lt;li&gt;We can type between the lists...&lt;/li&gt;
                &
lt;li&gt;...thanks to &lt;strong&gt;Magicline&lt;/strong&gt;.&lt;/li&gt;
            &
lt;/ul&gt;

            &
lt;p&gt;Lorem ipsum dolor sit amet duiMorbi vel turpisNullam et leoEtiam rutrumurna tellus dui vel tincidunt mattis egestasjusto fringilla velmassaPhasellus.&lt;/p&gt;

            &
lt;p&gt;Quisque iaculisdui lectus varius vitaetortorProin lacusPellentesque ac lacusAenean nonummy commodo necpedeEtiam blandit risus elit.&lt;/p&gt;

            &
lt;p&gt;Ut pretiumVestibulum rutrum inadipiscing elitSed in quam in purus sem vitae pedePellentesque bibendumurna sem vel risusVivamus posuere metusAliquam gravida iaculis nislNam enimAliquam erat ac lacus tellus ac felis.&lt;/p&gt;

            &
lt;div style=&quot;border2px dashed greenbackground#ddd; text-align: center;&quot;&gt;
            
&lt;p&gt;This text is wrapped in a&amp;nbsp;&lt;tt&gt;DIV&lt;/tt&gt;&amp;nbsp;elementWe can type after this element though.&lt;/p&gt;
            &
lt;/div&gt;
        </
textarea>
        <
script>

            
// This call can be placed at any point after the
            // <textarea>, or inside a <head><script> in a
            // window.onload event handler.

            
CKEDITOR.replace'editor2', {
                
extraPlugins'magicline',    // Ensure that magicline plugin, which is required for this sample, is loaded.
                
magicline_color'blue',    // Blue line
                
allowedContenttrue        // Switch off the ACF, so very complex content created to
                                            // show magicline's power isn't filtered.
            
});

        </
script>
    </
div>
    <
div id="footer">
        <
hr>
        <
p>
            
CKEditor The text editor for the Internet - <class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
        
</p>
        <
p id="copy">
            
Copyright &copy2003-2017, <class="samples" href="http://cksource.com/">CKSource</a> - Frederico
            Knabben
All rights reserved.
        </
p>
    </
div>
</
body>
</
html>
?>
Онлайн: 1
Реклама