Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philippfrenzel/yii2tooltipster
Tooltipster JQuery Extension Yii2
https://github.com/philippfrenzel/yii2tooltipster
Last synced: about 2 months ago
JSON representation
Tooltipster JQuery Extension Yii2
- Host: GitHub
- URL: https://github.com/philippfrenzel/yii2tooltipster
- Owner: philippfrenzel
- Created: 2013-07-08T12:19:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-17T14:23:20.000Z (over 8 years ago)
- Last Synced: 2024-10-18T00:35:52.686Z (2 months ago)
- Language: PHP
- Size: 36.1 KB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
yii2tooltipster
===============Tooltipster JQuery Extension Yii2
http://calebjacob.com/tooltipster/#demosInstall
=======use composer and packagist!
And in the view where you wanna use it:
```php
echo yii2tooltipster::widget($options=array());
``````js
$('.tooltip').tooltipster({
animation: 'fade',
arrow: true,
arrowColor: '',
content: '',
delay: 200,
fixedWidth: 0,
maxWidth: 0,
functionBefore: function(origin, continueTooltip) {
continueTooltip();
},
functionReady: function(origin, tooltip) {},
functionAfter: function(origin) {},
icon: '(?)',
iconDesktop: false,
iconTouch: false,
iconTheme: '.tooltipster-icon',
interactive: false,
interactiveTolerance: 350,
offsetX: 0,
offsetY: 0,
onlyOne: true,
position: 'top',
speed: 350,
timer: 0,
theme: '.tooltipster-default',
touchDevices: true,
trigger: 'hover',
updateAnimation: true
});
```