如何将HTML表单插入使用Adobe Edge Animate CC设计的网站。有没有简单的方法来实现?
请帮助!
答案 0 :(得分: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;'>")
此示例将为用户名生成两个输入字段1,为密码生成一个输入字段。 其余的html代码可以这样插入。
答案 1 :(得分:0)
在javascript动作窗口中设置动画,您可以参考表单及其中的输入字段 - 以及稍后(在您发布动画后),您可以将此表单添加到您的html中 - 在画布旁边,或者重叠它。