新手想要为我的网站创建动画
我正在写一个私人网站。 我想添加一张纸的动画(在其角落移动一点)。 我计划用户在动画纸的文本区域中添加一些文本。 我的程序将读取文本并保存它。 下次用户来时,我将向他展示这张带有他所写文本的动画纸。
1)作为动画新手。我应该使用 flasf 吗?有没有一个不错的免费软件和简单的替代方案? 我看到了这个网站,但认为也许有人可以从他自己的经验中看出
2)如何在动画论文中包含文本区域?
3)以后如何将保存的数据填充到动画纸上?
TIA
I'm writing a private website.
I want to add an animation of a paper (which moves a bit in its conrners).
I paln the user to add some text in the text area in that animated paper.
My program will read the text and save it.
The next time the user comes I'll show him this animated paper with the text he wrote.
1) As a newbie to animation. Should I use flasf? Is there a nice freeware and simple alternative?
I saw this site but thought maybe someone can tell from his own experience
2) How can I include text area in an animated paper?
3) How can fill animated paper with the saved data later on ?
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1)
这可以在 Flash 中完成。你需要查找一些东西:
1.嵌入字体
2. 使用文本格式
3.时间轴动画或补间
2)
这取决于动画的复杂程度。您可以在动画中添加动态文本字段并为其指定实例名称以访问它并更改内容。
3)
您需要从保存的位置检索数据,然后将其传递到动态文本字段 myAnimation.textfield.text = returnedData。
您可以使用 PHP 和 MySQL 将数据保存到服务器,也可以使用名为 SharedObject 的 Flash 内置 cookie 系统(google 一下)。由您决定。
1)
This can be done in Flash. You need to look up some things:
1. Embedding fonts
2. Working with Textformat
3. Timeline animation or Tweens
2)
This depends of the complexity of your animation. You can add a DYNAMIC textfield inside your animation and give it an instance name to access it and change content.
3)
You need to retrieve the data from your saved location and then pass it into the DYNAMIC textfield myAnimation.textfield.text = loadedData.
You can save the data to a server using PHP and MySQL or you can use Flashs buildin cookie system called SharedObject (google it). Its up to you to decide.