반응형

돈을 벌기는 쉽다. 하지만 변화를 일으키기는 어렵다. - 톰 브로코, <네트워크 뉴스> 앵커 겸 언론인 -

반응형
반응형

15 jQuery Tooltip Plugins for Developers

 

The tooltip or infotip or a hint, is a common graphical user interface element. It is used in conjunction with a cursor, usually a pointer. When the user hovers their pointer over a particular item, without clicking it, a tooltip will appear or a small “hover box” containing information about the item being hovered over.
The jQuery tooltip is one of the best building blocks one should consider utilizing within their web design and development. Tooltips offer extra functionality and versatility, and can be regarded as one of the most important user-interface components for most websites.

In this article I have gathered 15 best jquery tooltip plugins that will help you to create innovative and creative web design and help you to achieve desired results for your web projects. I hope you will find this list of jquery tooltip plugins handy and useful for your upcoming and current web projects. If you know of some other jquery tooltip plugins please do let me know by commenting in comment section, I would love to hear from you. Enjoy !

1. Tooltipster

Tooltipster
Tooltipster is a jQuery plugin for quickly creating HTML5-validated and flexible tooltips. The plugin is small-in-size (4.8kb minified), works fast and can be customized with ease. Its look can be changed with CSS (theme support) and the position of the arrow, following the mouse, delay/period of the appearance can all be defined.

Source

2. Toolbar.js

toolbar-js
Toolbar.js allows you to quickly create tooltip style toolbars for use in web applications and websites. The toolbar is easily customizable using the twitter bootstrap icons and provides flexibility around the toolbars display and number of icons.

Source

3.qTip2

qtip2
qTip2 is the second generation of the advanced qTip plugin for the ever popular jQuery framework. Building on 1.0′s user friendly, yet feature rich base, qTip2 provides you with tones of features like speech bubble tips and imagemap support, and best of all… it’s completely free under the MIT/GPLv2 licenses.

Source

4. Poshy Tip jQuery Plugin

poshy-tip
Poshy Tip jQuery Plugin is a tooltip plugin that allows easily creating stylish tooltips. With Poshy Tip you can position the tips relative to the mouse cursor or to the target element and align them in every possible way horizontally and vertically.

Source

5. Grumble.js

grumblejs
Grumble.js provides special tooltips without the usual limitations of north/east/south/west positioning. A grumble can be rotated around a given element at any angle, all 360 degrees. Any distance can be specified.

Source

6. Joyride

joyride-jquery-plugin
Joyride is a plugin for jQuery that simplifies the process of guiding users to discover the features of a website. By defining the steps of the tour as an ordered list, the plugin displays desired information near any HTML element inside tooltips.

Source

7. ImageMapster

ImageMapster
ImageMapster is a jQuery plugin that vitalizes the old image maps by adding more capabilities to them. Using the plugin, any image map can be highlighted, selected (single or multiple areas) and manipulated in all kinds of ways. Tooltip support makes displaying user-friendly information possible while interacting with the image maps.

Source

8. Tooltipsy

tooltipsy
Tooltipsy is a jQuery plugin that provides a flexible base for creating tooltips. It comes with minimum default styles or animations but gives you the complete control over them. It can be positioned however you wish, look and feel can be totally customized with CSS and any type of animations can be implemented.

Source

9. jQuery Bubble Popup

jquery bubble popup
jQuery Bubble Popup is a plugin for the popular JS framework that helps creating chic tooltips which can be controlled easily. The tooltips are shown/hidden with fading animations and any HTML content can be displayed inside them. They can be attached to any side of an element and it is possible to get the status of a tooltip (on/off, creation, last-modified or last-display date & time) to act accordingly.

Source

10. Beauty Tips

beauty-tip-demo
BeautyTips is a jQuery plugin which draws tooltips in realtime using the canvas element. Every tooltip, by default is displayed at the side of an element where there is more space. But the position can also be forced. Content can be hard-coded, called from an attribute or with an Ajax request.

Source

11. Simpletip

simpletip
Simpletip is a fresh & lightweight jQuery plugin for creating flexible tooltips. Tooltips can be attached to any element & easily styled in means of presentation & positioning. The tooltips can be static, dynamic or loaded via Ajax. And, any combination of effects can be applied to make them more attractive.

Source

12. Colortip

colortip
It converts the title attributes of elements within your page, into a series of colorful tooltips. Six color themes are available, so you can easily match it with the rest of your design. You can also easily create your own tooltip designs by just including three additional style classes to your stylesheet and adding an element to the supported colors array in colortip-1.0-jquery.js.

Source

13.TipTip

tiptip
TipTip is a very lightweight and intelligent custom tooltip jQuery plugin. It uses ZERO images and is completely customizable via CSS. TipTip detects the edges of the browser window and will make sure the tooltip stays within the current window size. As a result the tooltip will adjust itself to be displayed above, below, to the left or to the right of the element with TipTip applied to it, depending on what is necessary to stay within the browser window.

Source

14. (Mb) Tooltip

mb-tooltip
(mb)Tooltip is a beautiful tooltip for your webpage in jQuery. Simply by placing a “title” attribute with your content as value, and then you can replace the ugly default tooltip with this smart and nice one. You can also disable and enable (mb)Tooltip at anytime.

Source

15. Hovercard

hovercard
A free light weight jQuery plugin that enables you to display related information with the hovered label, link, or any html element of your choice. A hovercard can be useful when displaying Person bio, Book author and price, loading related information with Ajax and Editing in place. You may also add your own custom data source and display the profile data using existing card format.

Source.

반응형
반응형

Ack 2.04 — Grep-like tool for programmers

Ack 2.04 is a grep-like tool created for programmers who have to work with large heterogeneous trees of source code. Ack is written in Perl 5, and offers excellent code search capabilities, is highly portable, and is blazing fast.

ack

반응형
반응형

Pinba — A MySQL storage engine and monitoring server

Pinba is a MySQL plugin and storage engine that acts as a real-time monitoring and statistics server for PHP. Its main goal is to let developers monitor their PHP scripts, locate bottlenecks, and direct attention to the code that most needs it.

pinba

Homepage: http://pinba.org/
GitHub: https://github.com/tony2001/pinba_engine
Docs: https://github.com/tony2001/pinba_engine/wiki

 

//=================================================================

 

2. Installation requirements
--------------------------------

Pinba requires MySQL 5.1.x sources to be built and MySQL 5.1.x installation to run. MySQL 5.1 is the first version which supports pluggable storage engines, 
so older MySQL versions cannot and will never be supported.

Libraries required:
* Google Protocol Buffers - http://code.google.com/p/protobuf
* Judy - http://judy.sf.net
* libevent - http://monkey.org/~provos/libevent/
(this one may be already installed in your system, just make sure it's new enough (1.4+ is enough) and check that you have -devel package installed).

Optionally used:
* Hoard memory allocator - http://www.hoard.org

Using --with-hoard option you can add compiled-in Hoard support. It helps to reduce memory consumption (and Pinba is quite memory hungry when it comes to millions of timers). 2x smaller memory footprint with Hoard is what I regularly see.


 

반응형
반응형

Mason.js

Mason.js is a jQuery plugin that allows you to create a perfect grid of elements.

This is not Masonry, or Isotope or Gridalicious. Mason fills in those ugly gaps, and creates a perfectly filled space.

 

Mason.js — Fills in gaps in your masonry layout

Mason.js fixes a common problem with masonry-style layouts: gaps and ragged edges. It calculates where the holes in your layout will be and fills them in, creating a grid with no gaps.

masonjs

반응형
반응형

창조의 시작은 상상이다. 당신은 자신이 바라는 것을 상상하고 상상한 것을 결심하고 마침내 결심한 것을 창조한다. - 조지 버나드 쇼 -

반응형
반응형

만일 당신이 패배할 것이라 생각하면, 당신은 그럴 것이다.
만일 당신이 도전하지 못하리라 생각한다면,
당신은 못할 것이다.
만일 당신이 스스로 뛰어나다고 생각한다면,
당신은 그런 것이다.
세상을 살면서 우리는
성공이란 한 사람의 의지에서 비롯된다는 사실을 알게 된다.
그것은 모두 마음의 자세에 달려 있다.
-월터 D. 윈틀

 

월터 윈틀의 계속되는 주장입니다.
“삶에서의 성공은
항상 더 강하고 더 빠른 자에게 가는 것만은 아니다.
머지않아 성공을 거머쥘 사람은 바로
자신이 할 수 있다고 생각하는 사람이다.
높이 오르려면 높이 생각해야 한다.”

반응형
반응형
습관적인 만남은 진정한 만남이 아니다.
그것은 시장 바닥에서 스치고 지나감이나 다를 바
없다. 좋은 만남에는 향기로운 여운이 감돌아야 한다.
그 향기로운 여운으로 인해 멀리 떨어져 있어도
함께 공존할 수 있다. 사람이 향기로운 여운을
지니려면 주어진 시간을 값없는 일에
낭비해서는 안 된다. 쉬지 않고 자신의 삶을
가꾸어야 한다. 그래야 만날 때마다
새로운 향기를 주고받을 수 있다.


- 법정의《아름다운 마무리》중에서 -


* 사람의 만남은 향기로도 남습니다.
그저 그런 향기도 있고, 지금이라도 당장 달려가
가슴을 대고 다시 맡고 싶은 향기도 있습니다. 그런데,
그렇게 달려가 다시 맡았는데, 향기가 변해 있거나
예전과 같지 않으면 얼마나 실망이 크겠습니까?
만날 때마다 새롭고 한결같은 사람,
그럴 수 있도록 늘 자신을 가꾸는 사람,
그 사람이 진정 오랜 여운의
향기를 가진 사람입니다.
(2009년 1월6일자 앙코르메일)



 

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

위험하니 충전하라!  (0) 2013.07.10
눈에 보이지 않는 것  (0) 2013.07.09
내 사랑, 안녕!  (0) 2013.07.06
과거  (0) 2013.07.05
엄마의 주름  (0) 2013.07.04

+ Recent posts