Skip to content

Tag: javascript

Canvas 2DPath Clip overlap pr

I’m trying to create one compound shape in canvas that masks all the content below it – i will be animating these paths so they will eventually intersect – the problem is, when they intersect, they are doing a reverse mask when the drawing overlaps. I just want one solid mask. Here is an exa…

How to make Google Interaction

enter image description here I want to implement the interaction of the Google main page. However, it cannot be solved. How do I get it to work in my code or what do I search for? I am a newbie. Below is the code I implemented. https://jsbin.com/yuxojifuxe/edit?html,css,js,output Answer If you want drag-and-d…

Separating Django REST back from Front end

This is a bit of a different question. I’ve tried researching the information for a few hours now and I can’t seem to find what I am looking for. I have a Django REST backend that I set up. Its very simple REST API that has one Model Model.py I’m able to post to via the REST api interface se…

Why to use callback functions when I can simply call them?

I was reading about callback functions here (also in an online course which I am participating) and now I am stuck. The reason is that I cannot understand Why do I need to use callback functions if I can simply call them. Exemples below: 1 – Using callback functions: 2 – Here is my code not using …