0

如何将 HTML 表单插入使用 Adob​​e Edge Animate CC 设计的网站。有什么简单的实现方法吗?

请帮忙!

4

2 回答 2

0

单击 {} 括号时,您可以在舞台上添加代码。像这样插入代码:

sym.$('input_box_username').html("<input type='text' id='input_box_username' placeholder='Username'" + " maxlength='60' " + " style='background-color:white; border:1px solid #0B76d1; padding-left: 5px; width:550px; height:26px; font-size:14px;'>")

sym.$('input_box_password').html("<input type='password' id='input_box_password' placeholder='Password'" + " maxlength='40' " + " style='background-color:white; border:1px solid #0B76d1; padding-left: 5px; width:550px; height:26px; font-size:14px;'>")

此示例将生成两个输入字段,一个用于用户名,一个用于密码。您的 html 代码的其余部分可以像这样插入。

于 2016-08-09T12:05:07.467 回答
0

在您的 javascript 操作窗口中的动画中,您可以引用一个表单和其中的输入字段 - 稍后(在您发布动画之后)您可以将此表单添加到您的 html - 在您的画布旁边或重叠它。

于 2016-08-19T13:26:16.247 回答