How does jquery qtip make its arrows?

2.5k Views Asked by At

qtip is not using images to make its arrows, like other tips out there. So I was wondering how they are making their dynamic arrow tip?

A person can easily change the size of the tip with width/height.

http://craigsworks.com/projects/qtip/features/#tips

3

There are 3 best solutions below

0
On BEST ANSWER

They use (at least) 2 different technologies (depending on the browser):

0
On

They're using an html5 canvas

<div class="qtip-tip" . . .>
    <canvas height="12" width="12"></canvas>
</div>
1
On

I believe they are using CSS Triangles, as they seem to work in non html-5 compliant browsers.