Вход Регистрация
Файл: library/wysihtml5/examples/simple.html
Строк: 95
<?php
<!DOCTYPE html>

<
meta http-equiv="X-UA-Compatible" content="IE=Edge">
<
meta charset="utf-8">

<
title>wysihtml5 Simple Demo</title>

<
style>
  
body {
    
font-familyVerdana;
    
font-size11px;
  }
  
  
h2 {
    
margin-bottom0;
  }
  
  
small {
    
displayblock;
    
margin-top40px;
    
font-size9px;
  }
  
  
small,
  
small a {
    
color#666;
  
}
  
  
{
    
color#000;
    
text-decorationunderline;
    
cursorpointer;
  }
  
  
#toolbar [data-wysihtml5-action] {
    
floatright;
    
margin-right10px;
  }
  
  
#toolbar,
  
textarea {
    
width600px;
    
padding5px;
  }
  
  
textarea {
    
height280px;
    
border2px solid green;
    
box-sizingboder-box;
    -
webkit-box-sizingborder-box;
    -
ms-box-sizingborder-box;
    -
moz-box-sizingborder-box;
    
font-familyVerdana;
    
font-size11px;
  }
  
  
textarea:focus {
    
colorblack;
    
border2px solid black;
  }
  
  .
wysihtml5-command-active {
    
font-weightbold;
  }
</
style>

<
h1>wysihtml5 Simple Editor Example</h1>

<
p>
  
Uses a custom rule set that allows the following elements: <em>strongbemiaspan</em><br>
  
Links will automatically receive <i>target="_blank"</i> and <i>rel="nofollow"</i>. Check the source code of this page.
</
p>

<
form>
  <
div id="toolbar" style="display: none;">
    <
a data-wysihtml5-command="bold" title="CTRL+B">bold</a> |
    <
a data-wysihtml5-command="italic" title="CTRL+I">italic</a>
    <
a data-wysihtml5-action="change_view">switch to html view</a>
  </
div>
  <
textarea id="textarea" placeholder="Enter text ..."></textarea>
  <
br><input type="reset" value="Reset form!">
</
form>

<
h2>Events:</h2>
<
div id="log"></div>

<
small>powered by <a href="https://github.com/xing/wysihtml5" target="_blank">wysihtml5</a>.</small>

<
script src="../parser_rules/simple.js"></script>
<
script src="../dist/wysihtml5-0.4.0pre.js"></script>
<
script>
  var 
editor = new wysihtml5.Editor("textarea", {
    
toolbar:        "toolbar",
    
parserRules:    wysihtml5ParserRules,
    
useLineBreaks:  false
  
});
  
  var 
log document.getElementById("log");
  
  
editor
    
.on("load", function() {
      
log.innerHTML += "<div>load</div>";
    })
    .
on("focus", function() {
      
log.innerHTML += "<div>focus</div>";
    })
    .
on("blur", function() {
      
log.innerHTML += "<div>blur</div>";
    })
    .
on("change", function() {
      
log.innerHTML += "<div>change</div>";
    })
    .
on("paste", function() {
      
log.innerHTML += "<div>paste</div>";
    })
    .
on("newword:composer", function() {
      
log.innerHTML += "<div>newword:composer</div>";
    })
    .
on("undo:composer", function() {
      
log.innerHTML += "<div>undo:composer</div>";
    })
    .
on("redo:composer", function() {
      
log.innerHTML += "<div>redo:composer</div>";
    });
</
script>
?>
Онлайн: 1
Реклама