Write in ANY OTHER LANGUAGE and output in javascript?

For my day job, I am programming in python or C ++. I am trying to make a “smooth” looking site for my mother.

The problem is that javascript is indecently difficult for me. Nothing seems to work as it should. I tried using jQuery and mootools and scriptacous, and I just keep wanting to hit my head on the table. python / C ++ is very natural for me - but with any of these javascript nonsense I will try to combine several examples in the documents and everything will stop working; javascript / css seems so easy to crack.

Is there any interface constructor so that I don't have to touch javascript / css? The website doesn’t need any fancy server-side activities, it just wants the website to do something like a slide show where images disappear, pages are inserted and exited, etc.

Is there any program online or off that can build this for me? I use Linux exclusively - but I would like to buy windows and any program to do this. I'm starting to think that my computer is obsessed with the devil.

+4
source share
4 answers

Google Web Toolkit: http://code.google.com/webtoolkit/

This allows you to write a program in Java and compile to JavaScript.

There is also WT: http://www.webtoolkit.eu/wt

This allows you to write in C ++. It received far less pressure than the GWT, but it could also be a good option. However, I'm not sure if WT does exactly what you want, while I'm sure GWT does (albeit in Java).

+3
source

CoffeeScript

It compiles easily in JavaScript and is similar to python.

Regarding user interface development, something like Sproutcore might be useful.

I don’t think they are very compatible though

+3
source

Script # converts C # to Javascript.

However, you still need to know HTML and CSS.

+1
source

Is there a reason you feel you have to do it from scratch? Why not pay for a good professional Wordpress theme or something like that. I would think that you should have more than anything you need, and that will probably look smoother than you could do with a creator like wysiwyg.

0
source

All Articles