0

我在 Edge Animate 中创建了一个非常基本的文件,我只是在其中淡入和淡出一些文本。它位于此处:

http://www.threecell.com/demo/simpletext/simpletext.html

Edge Animate 导出一个 HTML 文件和一些 JS 文件。我的问题是是否有可能做到这一点,以便您将来可以使用 WordPress 框架更新文本。我发现实际文本是在我在下面发布的一个 JS 文件中声明的(有问题的文本是“这是一个测试”。)最终,我想创建一个 WordPress 小部件进入这个 JS文件并更改文本值。

提前感谢您的任何帮助或指导,

/**
 * Adobe Edge: symbol definitions
 */
(function($, Edge, compId){
//images folder
var im='images/';

var fonts = {};


var resources = [
];
var symbols = {
"stage": {
   version: "2.0.1",
   minimumCompatibleVersion: "2.0.0",
   build: "2.0.1.268",
   baseState: "Base State",
   initialState: "Base State",
   gpuAccelerate: false,
   resizeInstances: false,
   content: {
         dom: [
         {
            id:'Text',
            type:'text',
            rect:['131','190','auto','auto','auto','auto'],
            text:"THIS IS A TEST",
            font:['Arial, Helvetica, sans-serif',24,"rgba(0,0,0,1)","normal","none",""]
         }],
         symbolInstances: [

         ]
      },
   states: {
      "Base State": {
         "${_Stage}": [
            ["color", "background-color", 'rgba(255,255,255,1)'],
            ["style", "overflow", 'hidden'],
            ["style", "height", '400px'],
            ["style", "width", '550px']
         ],
         "${_Text}": [
            ["style", "top", '200px'],
            ["style", "opacity", '0'],
            ["style", "left", '197px']
         ]
      }
   },
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 1500,
         autoPlay: true,
         timeline: [
            { id: "eid7", tween: [ "style", "${_Text}", "opacity", '1', { fromValue: '0'}], position: 0, duration: 1500 },
            { id: "eid4", tween: [ "style", "${_Text}", "left", '297px', { fromValue: '197px'}], position: 0, duration: 1500 },
            { id: "eid5", tween: [ "style", "${_Text}", "top", '193px', { fromValue: '200px'}], position: 0, duration: 1500 }         ]
      }
   }
}
};


Edge.registerCompositionDefn(compId, symbols, fonts, resources);

/**
 * Adobe Edge DOM Ready Event Handler
 */
$(window).ready(function() {
     Edge.launchComposition(compId);
});
})(jQuery, AdobeEdge, "EDGE-2538351"); 
4

1 回答 1

1

您必须创建一个插件并使用Widgets_API

在前端,小部件将用于wp_enqueue_script加载simpletext_edgePreload.js. 然后将您的文本值作为 JavaScript 数据传递给wp_localize_script.
你终于可以在你的 JS 文件中使用这样的东西了:text:my_data.text.

一个简码示例:Wordpress Javascript File SRC File Path

小部件示例:有条件地将小部件的脚本/样式表排入 HEAD

于 2013-09-18T22:56:15.727 回答