jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
42 lines (39 loc) • 2.37 kB
HTML
<html>
<head>
<title id='Description'>
The jqxTooltip widget displays a popup message. The widget can be used in combination with any html element.
Hover over the posters to see more information about the films. TypeScript example.
</title>
<link rel="stylesheet" type="text/css" href="../../../jqwidgets/styles/jqx.base.css" />
<script type="text/javascript" src="../../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxtooltip.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script type="text/javascript" src="typescript-tooltip.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script>
$(document).ready(function ()
{
createToolTip('#filmPicture1', '#filmPicture2', '#filmPicture3', '#filmPicture4', '#filmPicture5', '#filmPicture6', '#filmPicture7', '#filmPicture8', '#filmPicture9');
});
</script>
</head>
<body>
<div class="example-description">
The jqxTooltip widget displays a popup message. The widget can be used in combination with any html element.
Hover over the posters to see more information about the films. TypeScript example.
</div>
<div style="width: 400px;" id="container">
<img style="margin: 8px;" src="../../../images/The_Amazng_Spider_Man.jpeg" id="filmPicture1" />
<img style="margin: 8px;" src="../../../images/The_Avengers.jpg" id="filmPicture2" />
<img style="margin: 8px;" src="../../../images/The_Dark_Knight_Rises.jpg" id="filmPicture3" />
<img style="margin: 8px;" src="../../../images/Harry_Potter_7_Part_1.jpg" id="filmPicture4" />
<img style="margin: 8px;" src="../../../images/Harry_Potter_7_Part_2.jpg" id="filmPicture5" />
<img style="margin: 8px;" src="../../../images/Inception.jpg" id="filmPicture6" />
<img style="margin: 8px;" src="../../../images/Star_Trek.jpg" id="filmPicture7" />
<img style="margin: 8px;" src="../../../images/Star_Wars_Episode_III.jpg" id="filmPicture8" />
<img style="margin: 8px;" src="../../../images/Thor.jpg" id="filmPicture9" />
</div>
</body>
</html>