Making a animation app

I’m trying to find a web hosting website

Ok I don’t think i will be able to use it

Because i use my school iPad and I’m busy making a new 2 minute animation

guys I released a 1.2 update on the animation app index-jsfiddle-mhkj6weg-12.html (9.7 KB)

What language did you program it in?

1 Like

js and css and html

to put this on the web you probably will have to pay unless you can use github

Where were you??

Does it have an encoder yet?

By the way, do you have a Github account? Like FroggyWadd mentioned, you can put it as a website on Github that everyone can visit. I can post a quick guide if you want.

1 Like

ye imma post it on GitHub once its actually usable for like complitcated animation

2 Likes

Stuff with gamesdev and my school year started like 5 weeks ago

1 Like

Ah, okay, thanks.

1 Like

@Sharxxy, may you give us the JSFiddle link?

uhhhh yeah for sure

So send it? I want to look into your app.

okay give me a minute

here it is

@Sharxxy, have you tried jQuery?

/// this
document.getElelementById('button-whatever').onclick = () => {alert('hi!')}
/// to this
$("#button-whatever").on('click', () => {alert("hi!")})
/// or this
$("#button-whatever").click(() => {
  if ($(this).text() !== 'Hi!') {
    $(this).text("Hi!")
  } else {
    $(this).text("Bye!")
  }
})

wow… just WOW…