Animation in .NET.

How can animation be done using .NET?

I would prefer not to use Flash, if possible, so I am looking for suggestions on how it will work to implement various types of animation on the new site that I create.

A new site for the wizard, so I want to provide animated buttons (transfer cards, etc.), as well as embed a video. Is it possible to do this without using Flash or is this the only real solution? I would like to keep it as cross-platform and standard as possible.

+4
source share
4 answers

Silverlight Comes to mind as an obvious choice if you want to make animations using .NET on the Internet. It may not cover all platforms, but it will work in IE and FireFox and on Mac.

+3
source

Check out jQuery's cross-browser JavaScript library for animation (this is what is used for). A link to it can be found at http://visualjquery.com/1.1.2.html .

Unfortunately, without Flash, Silverlight or other video support with cross-system support is limited.

+2
source

JavaScript may be the way to go if you want to avoid Flash. Check this out: http://www.webreference.com/programming/javascript/java_anim/

However, it will not work for embedded video, so you are stuck with Flash for this (or Silverlight, or QuickTime ).

0
source

Silverlight is the answer, and Moonlight will be the Linux equivalent and will be available soon. We did some moonlight beta testing and found it to be pretty stable with most of the Silverlight operations we do.

0
source

Source: https://habr.com/ru/post/1276313/


All Articles