All Questions
Tagged with javascript html5
261
questions
2
votes
0
answers
34
views
Colorproof dust effect
A combination of various css transitions (background-color, box-shadow, opacity, ...
1
vote
3
answers
248
views
programmatically update a <td> element per table row
A table that gets updated with new values as soon as they arrive. Each value is in its own row:
An array of objects representing each a quote (ticker and price)
...
4
votes
0
answers
89
views
Complete html5 platform game as a snippet
I made a complete little platformer game as a code snippet.
The goal is to try to keep jumping on the enemies without touching the ground to increase score.
I used Tad's Basic Game Objects, an open ...
2
votes
1
answer
103
views
An extended JavaScript plugin for rendering radial pie charts
(This post is the continuation of A JavaScript plugin for rendering radial pie charts.)
(See the continuation of this post.)
Now, you can mark up the radial pie charts via XML:
...
3
votes
1
answer
92
views
A JavaScript plugin for rendering radial pie charts
(See also An extended JavaScript plugin for rendering radial pie charts.)
I have this JavaScript plugin:
rodde-radial-pie-chart.js:
...
0
votes
1
answer
87
views
Create and store the level data for a remake of Super Mario Bros game
I am trying to remake Super Mario Bros. in JavaScript and I am trying to figure out if there is a more efficient/shorter way to create and store the level data. I have created 1-1 and here's what the ...
1
vote
1
answer
154
views
Simple calculator project
This code displays a simple decimal calculator with operations like add, subtract, multiply and divide. It also has a function to clear the result.
I try to reduce code repetition. I still think I ...
1
vote
1
answer
129
views
Sign Up Page - A mini Frontend Project
I have designed a a small frontend project, a sign-up page. It uses HTML, CSS, JavaScript and jQuery. Being a beginner to frontend development, I want to adapt to all the best practices. I am looking ...
1
vote
1
answer
677
views
Simple Rock Paper Scissor game
I am new to javascript and I made a simple Rock Paper scissor game with User Interface.
There will be 5 rounds and user will play against the computer by clicking any of the three buttons.
See Live ...
3
votes
4
answers
118
views
Javascript date / time display
I'm writing a simple start page and it's my first time with JavaScript, my previous background is Python/VBScript. Is it good enough? What best practices should I apply? Should I compress and nest the ...
0
votes
2
answers
2k
views
Animate circle using Javascript and HTML5 Canvas
Animate circle using Javascript and HTML5 Canvas. The circle will be drawn at the center of the canvas. The initial radius will be 0 and will keep on increasing till 100 and then decrease till 0 and ...
1
vote
0
answers
35
views
Suggestions on how to upgrade HTML and CSS making a hamburger icon that transitions to "X" in the code below?
I'm interested in how I can improve my HTML and CSS? I didn't yet learn JS, even though I used it for onclick function, so I'm not currently interested in how to improve the JS in this code. I was ...
2
votes
0
answers
57
views
JS icons animation
I've written a simple JS that takes care to animate an icon.
At first I wrote it quickly and without paying attention to any kind of optimization:
...
2
votes
0
answers
144
views
Flask Session + Jinja OR Javascript + Flask
I'm a beginner in programming and I'm figuring out what is the best approach for my mini e commerce site project.
My current approach is
...
2
votes
3
answers
382
views
HTML/JavaScript temperature converter with rounding
I am looking to improve the performance of my code through best practices and cleaner code.
My goal here is just to perform a conversion whenever there is a keyup.
But I noticed that my code looks ...