Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am creating a historical website and needs to create map of the world, and the places and countries are click able!
How can I create it?
what should I learn to know?
is there any tool to do it fast and nice?
Try the Google Maps API, or OpenLayers if you want to show your own map data.
If you haven't got your own map data yet you might find a tool like QGIS handy to help you build the map data.
If you don't want to start from scratch you might be able to adapt some of the free data here: http://en.wikipedia.org/wiki/List_of_GIS_data_sources
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I'm currently learning JS as a project i decided to make a memory game with the function of connecting questions with answers
currently its matching the cards when they share the same image and for my project I need to make pairs of cards with different images
Could anyone give me an alternative to giving values to the cards, I would like to give classes to the cards manually
return card.getElementsByClassName('card-value')[0].src;
Very easy way is to store values/data using data attributes. Here's a quick overview:
https://developer.mozilla.org/en-US/docs/Learn/HTML/Howto/Use_data_attributes
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I am a beginner to three.Js library.How can i implement/create a circuit having batteries,bulbs,ammeter,switches using Three.js with simple features like glowing of a bulb when circuit is closed,toggling of existing state(open/closed) of button when clicked ,i tried to search it over the internet but didn't get any useful information regarding this.Can anyone attach some links or provide some information regarding this?
I was really bored )
Used stuff:
THREE.CylinderGeometry(), THREE.SphereGeometry(), THREE.Shape(), THREE.MeshPhongMaterial(), THREE.LineBasicMaterial(), THREE.Mesh(), THREE.Line()
jsfiddle
You can tried at
https://kazuhikoarase.github.io/simcirjs/
I hope will be useful for you...success!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to build a calendar with javasCript that allow users to enter their shift manually and have 2 option when a date is clicked on( swap or give away)? any thought on how to do it? im I going to need an API? building the calendar will I have to build it using table or which is most efficient way?
I am a rookie coder who started less than a month so pardon if I am not too specific.
How about a php calendar? This works good http://fast-apps.co.uk/fast_cal.php#go
Also you can use Google Calendar and embed that too.
Here is an example of where I have it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to make app like canva but i dont know where to start, i have good experience in html and css but a basic javascript.
I need to know what they use.
How to save html data to image like canva functions.
How they save the data and load it again.
I already try Html2canvas but problem in images limit.
You should use Javascript canvas libraries like Fabricjs
but i don't think that basic knowledge of javascript would be enough for such app you will have to improve your javascript skills to an at least intermediate level.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm trying to do something kind of like Google's embeddable pdf viewer except I want to be able to embed a website and be able to view that on my website.
Specifically because I have many different teachers and they all use something called Planbook for their assignments, so I want to be able to view all of them at once. Also, I think it would help some other students.
So, does anyone know of a way to do this?
A quick way to acheive this is to use the HTML iframe. It displays a frame of another webpage, an example usage is <iframe src="http://www.w3schools.com"></iframe>. Also see this link for some more basic info.