Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mottie/pointy
A jQuery plugin that dynamically points one element at another ~
https://github.com/mottie/pointy
arrow dynamic jquery pointer
Last synced: 3 months ago
JSON representation
A jQuery plugin that dynamically points one element at another ~
- Host: GitHub
- URL: https://github.com/mottie/pointy
- Owner: Mottie
- License: mit
- Created: 2015-03-14T17:40:07.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-22T13:01:32.000Z (almost 9 years ago)
- Last Synced: 2024-10-11T09:55:37.919Z (4 months ago)
- Topics: arrow, dynamic, jquery, pointer
- Language: JavaScript
- Homepage: http://mottie.github.io/Pointy/
- Size: 200 KB
- Stars: 26
- Watchers: 8
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
# Pointy [![Bower Version][bower-image]][bower-url] [![NPM Version][npm-image]][npm-url] [![devDependency Status][david-dev-image]][david-dev-url]
A jQuery plugin that dynamically points one element at another.
[npm-url]: https://www.npmjs.com/package/jquery.pointy
[npm-image]: https://img.shields.io/npm/v/jquery.pointy.svg
[david-dev-url]: https://david-dm.org/Mottie/Pointy#info=devDependencies
[david-dev-image]: https://img.shields.io/david/dev/Mottie/Pointy.svg
[bower-url]: http://bower.io/search/?q=jquery.pointy
[bower-image]: https://img.shields.io/bower/v/jquery.pointy.svg## Features
* Pointy will create an arrow, at any angle, pointing from the pointer to the pointee (Pointy).
* Minimal setup with only one required option - setting the pointer.
* The background & border color of the arrow will automatically be matched to the pointer, unless overriding options are set.
* Additional options allow setting the arrow base width & border width.## Notes
* jQuery v1.7+ is the only dependency.
* jQuery UI draggable is used in these demos, but any draggable plugin may be used.
* The outer width & height of the elements is used in calculation, so any margin on the pointer will offset the arrow placement.
* Canvas is used to add an arrow which points from one element to another, so there is limited css effect on the arrow background & border colors.## To Do
* Allow multiple pointers per pointee.
## Setup
```html
$(function(){
// $pointer points at $pointy
var $pointer = $('.label.pointer'),// initialize pointy (showing all options; but not all defaults)
$pointy = $('.repo-name').pointy({
pointer : $pointer,
arrowWidth : 10, // width of pointer base
borderWidth : 1, // pointer stroke width
flipAngle : 45, // angle @ which to flip pointer to a closer side
defaultClass : '', // additional class name added to the pointer & the arrow (canvas)
activeClass : 'pointy-active', // class added to base & pointer on updating// optional; if not set, plugin will attempt to match the base color
borderColor : null,
backgroundColor : null,// tweaks
useOffset : null
});// Using jQuery UI draggable (any draggable code will work)
$label.draggable({
containment : '.top',
drag : function() {
$pointy.trigger('pointy-update');
}
});});
```
## Documentation & Demos
* [Main documentation page](http://mottie.github.io/Pointy/)
* [Basic demo](http://mottie.github.io/Pointy/docs/basic.html)
* [Keyboard demo](http://mottie.github.io/Pointy/docs/keyboard.html) (using [this plugin](https://github.com/Mottie/Keyboard))## Version
### v1.0.2-beta (3/22/2016)
* Docs: correction to "trigger" destroy method.
* Update dependencies.
* Add repo to bower.### v1.0.1-beta (4/28/2015)
* Fix npm package name.
* Add `pointer-events:none` to canvas; this allows clicking through the pointy arrow.
* Update keyboard demo code to refresh pointy arrow on textarea resize.
* Update jQuery to v1.11.2.### v1.0.0-beta (3/14/2015)
* Initial release