Giter VIP home page Giter VIP logo

site's People

Contributors

1wkk avatar aneeskodappana avatar anselanza avatar bensquire avatar chengluyu avatar chinanf-boy avatar cstrnt avatar dependabot[bot] avatar dwivedithedev avatar gc avatar ilyashubin avatar janaagaard75 avatar jyoui avatar k1nz avatar karanssj4 avatar lalop avatar lavrton avatar mfijas avatar pgrodrigues avatar reggino avatar reneb94 avatar sarthakm21 avatar somejeff avatar steambap avatar swiest avatar teykey1 avatar vanquishedwombat avatar vasu-ind avatar vibhanshuc avatar zhengjoel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

site's Issues

vue-konva zIndex functions documentation

Hello there.

I've been struggling a bit with the zIndex functions in vue-konva in the last couple of hours. After looking through the source and some related issues (#34 for example), it appears that functions like moveToTop() etc. should not be used in vue-konva and do indeed cause unexpected behavior at times as vue-konva tries to order the elements by their order in the <template> section. I hope that this is still correct for the current vue-konva release and not an error on my end.

So far, I have not found a single hint about this in the official docs or in the vue-section of the Konva website (please correct me if I'm wrong).

The same thing seems to be the case in react-konva where it is indeed documented on the Konva website. Basically it describes the same situation as in vue-konva, so I suggest adding a similar section to the vue-konva section of the website.

If desired, I could do a pull-request for that and add it.

CodeSandboxes aren't displaying on Firefox

I'm using Firefox 78 on Windows, and when I view a demo page (for instance, vuejs drag and drop) the CodeSandbox area doesn't load, so I'm just left with some text.

This error shows in the console:
Content Security Policy: The page's settings blocked the loading of a resource at inline ("script-src").

I've noticed that this isn't happening on Chrome.

consider adding an example for konva stage events

I believe it should be added an example regarding stage specific events like contentMousemove, contentMousedown, etc.

Some people might be mislead because of old KineticJS stack overflow questions like these:
http://stackoverflow.com/questions/17494102/kineticjs-on-mousemove-does-not-track-outside-shapes
http://stackoverflow.com/questions/12187355/kineticjs-mouseover-not-working

And will add a transparent Konva.Rect as background to detect events instead of just using stage.on("contentMousemove", function () {...}); for example.

React warning (react-warning-keys) on example

The basic example in codesandbox produces a React warning. Line 34 does not work as expected. On Line 32 you initialize an array of length 10 with each element being undefined. Then call map and assume that the first parameter of the callback will give you the array index, or you may assume that ...Array(10) will give you an array of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], but in either case this is not how it works. The array index is passed as a second parameter in map() method. You need to change the code slightly like so:

- {[...Array(10)].map(i => (
+ {[...Array(10)].map((_, idx)=> (
 <Star
-  key={i}
+  key={idx}

This is a non critical error but prevents React from know which <Star /> component to update. If you are using React Dev Tools you also cannot see the <Star /> component. The above fix solves the issue.

New Logo Design

I want to design a logo for your site, do you want it ?, free

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.