Google Web Designer Пользовательские компоненты HTML5
Как я могу сделать пользовательские компоненты Google Web Designer?
Я предполагал, что они будут как компоненты Adobe Flash. Это в бета-версии, и я не могу найти много информации обо всем этом.
Я пробовал искать во всех каталогах под /Applications/Google Web Designer.app/Contents
чтобы увидеть, могу ли я подсмотреть некоторые образцы. Документы предназначены для пользователей: https://support.google.com/webdesigner/
Я хочу создать рекламные компоненты HTML5, которые команда может использовать.
1 ответ
- Вы должны создать свои собственные теги на основе стандарта W3C
Создайте JSON-манифест для вашего компонента:
{ name: {string} A human readable name description: {string} A succinct but complete description of the component type: {string} The element type, which must contain a dash (-) version: {number} The version number, which must be incremented with each update files: {Array.<FilesObject>} The JS and CSS files for the component externalScripts: {Array.<string>} The external script dependencies dependencies: {Array.<string>} The dependent types attributes: {Array.<Attribute>} The attributes of the component methods: {Array.<Method>} The methods of the component events: {Array.<Event>} The events dispatched by the component metrics: {Array.<MetricEvent>} Events that must be tracked as a metric }
Создайте все необходимые файлы.js и.css, затем упакуйте компоненты.
По следующей ссылке вы можете найти учебное пособие по созданию пользовательских компонентов для GWD.
Надеюсь, поможет.