プレビューとフルスクリーン

このサンプルではツールバーのプレビューボタンやフルスクリーンボタンを押下して、コンテンツのプレビューやフルスクリーンでの操作を確認することができます。

リッチテキストエディタ(GcRichTextEditor)コントロールは、コンテンツのプレビューおよびGcRichTextEditorのフルスクリーンの編集モードを提供します。 プレビュー機能 Previewプラグインを利用することで、現在のコンテンツをプレビューウィンドウから確認することができます。 この機能を有効にするには、pluginsプロパティにGcRichTextEditorPluginItem.Previewの値を設定してください。 フルスクリーン編集モード FullScreenプラグインを利用することで、ページ全体にGcRichTextEditorのみを表示した状態で編集を継続することができます。 この機能を有効にするには、pluginsプロパティにGcRichTextEditorPluginItem.FullScreenの値を設定してください。 なお、この機能はブラウザのF11キーを押したときのものとは異なります。
import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import "./styles.css"; import { InputMan } from "@mescius/inputman.richtexteditor"; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcRichTextEditor = new InputMan.GcRichTextEditor( document.getElementById("gcRichTextEditor"), { baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', plugins: [ InputMan.GcRichTextEditorPluginItem.Preview, InputMan.GcRichTextEditorPluginItem.FullScreen, ], toolbar: [ InputMan.GcRichTextEditorToolbarItem.Preview, InputMan.GcRichTextEditorToolbarItem.FullScreen, ], } );
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>リッチテキストエディタコントロール - プレビューとフルスクリーン</title> <!-- SystemJS --> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="systemjs.config.js"></script> <script> window.onload = function() { System.import('./src/app'); } </script> </head> <body> <textarea id="gcRichTextEditor"> <h1>コンテンツをプレビューしたり、フルスクリーンで表示することができます。</h1> </textarea> </body> </html>
body { height: 600px !important; box-sizing: content-box !important; }
System.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, meta: { '*.css': { loader: 'css' } }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, // map tells the System loader where to look for things map: { '@mescius/inputman': 'npm:@mescius/inputman/index.js', '@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS', '@mescius/inputman.richtexteditor': 'npm:@mescius/inputman.richtexteditor/index.js', '@mescius/inputman.richtexteditor/CSS': 'npm:@mescius/inputman.richtexteditor/CSS', 'css': 'npm:systemjs-plugin-css/css.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', 'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js' }, // packages tells the System loader how to load when no filename and/or no extension packages: { src: { defaultExtension: 'js' }, "node_modules": { defaultExtension: 'js' }, } });