Giter VIP home page Giter VIP logo

jquery-hotspot's Introduction

jQuery - Hotspot

A jQuery plugin for creating Hotspots in an HTML element. This plugin operates in two modes, admin and display. The admin mode enables user to create hotspots on desired HTML elements. The display mode is used for only displaying the hotspots to the end user. The design of the hotspot created are fully customizable. User can add their own CSS class to style the hotspots.

Note: Doesn't ensure responsiveness as of now.

The Setup

bower install jquery-hotspot

Include jquery.hotspot.js at the bottom of the HTML page before the closing body tag. Wrap the HTML element for which the hotspot is to be obtained with another element. Also include the jquery.hotspot.css file to go with some of the default design decision.

<div id="theElement">
  <img src="theImage.jpg" width="600" height="400">
</div>

The plugin instance will be called with this element.

Note: The CSS property, position for this element should not be set be absolute. Infact the appropriate CSS property for this element should be

#theElement {
  position: relative;
  display: inline-block;
}

Usage - Display mode

The data associated with the hotspots can be passed in directly to the plugin. The data can also be fetched from an ajax call.

There are three options given for hotspot-interactivity - hover, click and none.

  • hover : The data associated with the hotspot will show up on hovering over spot.
  • click : The data associated will show up on clicking the spot.
  • none : The data will be static and would not be affected by any events.

Basic call with known coordinates:

$('#theElement').hotspot(
  data: [
    { "x":288, "y":390, "Title":"The Title","Message":"Create the Message here" },
    { "x":143, "y":400, "Title":"jQuery Hotspot","Message":"This jQuery Plugin lets you create hotspot to any HTML element." }
  ],
  tag: 'img', //optional (default is img)
  interactivity: "hover", // options : click, none (default is hover)
  hotspotClass: 'Hotspot'
);

The data object above can be populated with any number of properties and can be designed with appropriate CSS. The tag variable passed to the plugin determines the type of HTML tag for which the hotspot is obtained. The hotspotClass is class of the hotspots created. One can change the look of the hotspot by applying some CSS to this class.

Fetching data via AJAX call

$("#theElement").hotspot({
  ajax: true, // Switching on the ajax
  ajaxOptions: {
    url: 'parse.php',
    type: 'GET',
    ...
  },
  interactivity: "hover" // options : click, none (default is hover)
});

The data coming from the server-side is expected to be JSON encoded. The object ajaxOptions can be utilized to change the http headers, etc.

Usage - Admin mode

Standard call

$("#theElement").hotspot({
    mode: "admin", // Switching to admin mode
  ajax: true, // Turn on ajax
  ajaxOptions: {
    url: 'parse.php',
    type: 'POST',
    ...
  },
  interactivity: "hover" // options : click, none (default is hover)
});

ajax and ajaxOptions are required here so that the hotspot that are being created in the admin mode get stored in the server. However if someone turn off the ajax, then the data get be stored in the browser's LocalStorage.

Key Features

  1. Any number of messages/nodes can be stuffed in a single hotspot. To do so the dataStuff parameter is passed to the plugin. By default there are two nodes (Title and Message)
$("#theElement").hotspot({
    mode: "admin", // Switching to admin mode
  ajax: true, // Turn on ajax
  ajaxOptions: {
    url: 'parse.php',
    type: 'POST',
    ...
  },
  dataStuff: [
    {
      'property': 'Time',
      'default': '5:40am'
    },
    {
      'property': 'Date',
      'default': '12/11/2014'
    },
    {
      'property': 'Place',
      'default': 'Siberia'
    },
  ]
});

The default property in the dataStuff object above will be overwritten everytime a new hotspot is created.

  1. The plugin also provides some basic functions that can be invoked after certain events in the process of creation of hotspots.
$("#theElement").hotspot({
    mode: "admin", // Switching to admin mode
  ajax: true, // Turn on ajax
  ajaxOptions: {
    url: 'parse.php',
    type: 'POST',
    ...
  },
  afterSave: function(message) {
    alert(message);
  },
  afterRemove: function(message) {
    alert(message);
    window.location.reload();
  },
  afterSyncToServer: function(message) {
    alert(message);
  }
});

These functions can be utilized to keep track of the flow of hotspot creation.

  1. The plugin can be used with any number of HTML elements in a page. However to do so, the LS_Variable passed to the plugin should be named uniquely for every instance. This helps plugin to avoid conflicts and while using HTML5 LocalStorage. Also the save, remove and server syncing button should be given seperate id's for each of the instances.

HTML :

<div id="theElement-a">
  <img src="theImage-a.jpg" width="600" height="400">
</div>
<div id="theElement-b">
  <img src="theImage-b.jpg" width="600" height="400">
</div>

JavaScript :

$("#theElement-a").hotspot({
  mode: "admin",
  ...
  LS_Variable: "HotspotPlugin-a",
  done_btnId: 'done-a',
  remove_btnId: 'remove-a',
  server_btnId: 'server-a',
});

$("#theElement-b").hotspot({
    mode: "admin",
    ...
  LS_Variable: "HotspotPlugin-b",
  done_btnId: 'done-b',
  remove_btnId: 'remove-b',
  server_btnId: 'server-b',
});

For better clarity the examples folder can be checked

Fetch data via AJAX Request

Include jquery and hotspot plugin in the html code.

<script type="text/javascript">
$.ajax({url: "mytest.aspx/GetHotSpotData", success: function (result) {
  $("#HotspotPlugin_image").hotspot({
    data: result,
    interactivity: "click",
  });
}});
</script>

Also make sure result passed as data in the plugin should be an array of objects.

[
  { "x":288, "y":290, "Title":"The Title","Message":"Create the Message here" },
  { "x":143, "y":400, "Title":"jQuery Hotspot","Message":"This jQuery Plugin lets you create hotspot to any HTML element." }
]

jquery-hotspot's People

Contributors

aniruddhanath avatar aniruddha22 avatar

Watchers

James Cloos avatar

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.