返回介绍

tinymce-html-Styles

发布于 2019-05-06 06:49:57 字数 2887 浏览 988 评论 0 收藏 0

Examples

var Styles = new tinymce.html.Styles({
   url_converter: function(url) {
      return url;
   }
});

styles = Styles.parse('border: 1px solid red');
styles.color = 'red';

console.log(new tinymce.html.StyleSerializer().serialize(styles));

Methods

namesummarydefined by
parse()Parses the specified style value into an object collection. This parser will also merge and remove any redundant items that browsers might have added. It will also convert non hex colors to hex values. Urls inside the styles will also be converted to absolute/relative based on settings.tinymce.html.Styles
serialize()Serializes the specified style object into a string.tinymce.html.Styles
toHex()Parses the specified RGB color value and returns a hex version of that color.tinymce.html.Styles

Methods

parse

parse(css:String):Object

Parses the specified style value into an object collection. This parser will also merge and remove any redundant items that browsers might have added. It will also convert non hex colors to hex values. Urls inside the styles will also be converted to absolute/relative based on settings.

Parameters
  • css (String) - Style value to parse for example: border:1px solid red;.
Return value
  • Object - Object representation of that style like {border: '1px solid red'}

serialize

serialize(styles:Object, elementName:String):String

Serializes the specified style object into a string.

Parameters
  • styles (Object) - Object to serialize as string for example: {border: '1px solid red'}
  • elementName (String) - Optional element name, if specified only the styles that matches the schema will be serialized.
Return value
  • String - String representation of the style object for example: border: 1px solid red.

toHex

toHex(color:String):String

Parses the specified RGB color value and returns a hex version of that color.

Parameters
  • color (String) - RGB string value like rgb(1,2,3)
Return value
  • String - Hex version of that RGB value like #FF00FF.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文