uhhh u have to download the html file and then use it
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
What language did you program it in?
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.
ye imma post it on GitHub once its actually usable for like complitcated animation
Stuff with gamesdev and my school year started like 5 weeks ago
Ah, okay, thanks.
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!")
}
})