HTML5 canvas frameworks and tools [closed] - html

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm starting a new project that will use HTML5 and HTML5 canvas.
The project is basically an interactive 2D diagram that will show some objects in the screen, you can click the objects, make some actions over the objects, I need zoom and translate features, and also drag and drop support.
What frameworks (maybe something similar to jQuery) are available to make the work easier?
What tools (debuggers, editors and so one) do you think are better to improve the productivity?

Lime.js is a nice framework for such things. It has great documentation, very straight forward codes, examples with commented functionality and (since you asked this specifically) drag and drop support. It's usually used for games but you can easily use it for something that you're after as well.
You can find everything about lime.js here: http://www.limejs.com/
As for tools, I just use Sublime Text 2 for editing and debugg using the Chrome Developer tool.

Related

Can you create a mobile version of your website from scratch, if so how? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I'v created my website and I have been trying to research how to create a mobile version for it. However I thought it would be the same as scripting in notepad or sublime etc. Can you create one from scratch using notepad or sublime? Or should I just use the tools provided on the web such as 'Mobify'. (I'd prefer to learn from scratch)
Thanks in advance,
Noob developer.
If you have created your existing website from sctrach, there should be no problem changing it to mobile. Just add an altered css file, which contains the css for your mobile version. and add a javascript function to your page, which loads the css file depending on the device the page is requested from.
If you have built your site using tools, it is the easiest to do the transformation using tools.

Technologies For Interactive Websites and Animations [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I'm looking into making interactive websites in the near future. My question is what are the different technologies I can utilize if I wanted to make an interactive web page? I know HTML5 now has the ability to draw to a Canvas, including in 3D.
Are there any good tutorials I can look at. Below is an example website I was looking at. What technologies do you think were used in this app? I looked at the HTML source code and only saw Javascript files.
I understand this might be HTML5, but if so, what frameworks might they be using?
Arms Globe
Pitch Interactive
This website's interactivity is accomplish only with javascript.
You have 2 ways to make an interactive website: unsing Javascript, or using HTML5/CSS3 (you can also create your website interactivity by using Flash, but flash belong to the past ...)

HTML 5 Video with cue points [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Looking for a recommendation of an open-source HTML 5 video player with support for metadata (cue points).
We are using Flash video that triggers JavaScript in the host page using cue points and ExternalInterface, but the time has come for HTML 5.
I'm eager to build my own but am time constrained. We were hoping to extend something that gets us most of the way there. Already checked out video.js-- no metadata support.
We created one for Vimeo's FroogaLoop kit, but we need something not tied to a provider, nor can there be any dependency on a framework, i.e. JQuery.
Suggestions?
Sounds like the Leanback Player would work well for your requirements.

Is there a good resource for beautiful HTML forms? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am working in rails, and a looking for some resources to design visually pleasing HTML forms. I can write the CSS, so even examples would be great.
Any recommendations?
There are many resources out there, you can just google for well looking forms or something like this.
There are also javascript libraries which makes customized selects/checkboxes etc -for example a project called uniform - check it out, you might like it. It provides you tools to customize it.
You can try Gravity Forms for WordPress then you never need to hand code the html and it inserts unique id's and matching classes in the HTML. This means the sky is the limit when it comes to styling your form.
If you are not using WordPress, here is a nice tutorial for designing form layouts.

New features introduced with HTML5 [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I haven't used HTML5 possibilities in my web applications because of browsers' poor support, but situation seems to become much better so I became really interested in its new cool features (even though many of them are only in a draft state today).
I already know about cool Web Sockets, WebGL and Canvas (with this stuff I can finally get rid of Flash!)
What are the new things in HTML5 that I should be aware of? (I mean new ways of web-programing not the particular tags) (the question was inspired by Google IO)
Take a look at Dive into HTML5. It explains most of the features of HTML5 in a very illustrative way. Database functionality and offline applications are two additional things you didn't mention.
Dive Into HTML5 by Mark Pilgrim is a great resource for this.
Contents include:
<canvas>
<video>
Geolocation
Local Storage
Offline applications
New form features (placeholder, new types)