jquery-ui/demos/tooltip/video-player.html

148 lines
3.3 KiB
HTML
Raw Normal View History

2011-05-02 10:34:26 +00:00
<!doctype html>
<html lang="en">
<head>
2011-05-28 00:52:13 +00:00
<meta charset="utf-8">
2011-05-02 10:34:26 +00:00
<title>jQuery UI Tooltip - Video Player demo</title>
<link rel="stylesheet" href="../../themes/base/all.css">
<script src="../../external/jquery/jquery.js"></script>
<script src="../../ui/core.js"></script>
<script src="../../ui/widget.js"></script>
<script src="../../ui/position.js"></script>
<script src="../../ui/tooltip.js"></script>
<script src="../../ui/button.js"></script>
<script src="../../ui/menu.js"></script>
<script src="../../ui/effect.js"></script>
<script src="../../ui/effect-blind.js"></script>
2011-05-28 00:52:13 +00:00
<link rel="stylesheet" href="../demos.css">
<style>
.player {
width: 500px;
height: 300px;
border: 2px groove gray;
background: #ccc;
2011-05-28 00:52:13 +00:00
text-align: center;
line-height: 300px;
}
.ui-tooltip {
border: 1px solid white;
background: #111;
2011-05-28 00:52:13 +00:00
color: white;
}
.ui-menu {
position: absolute;
}
2011-05-28 00:52:13 +00:00
.set {
display: inline-block;
}
.notification {
position: absolute;
display: inline-block;
font-size: 2em;
padding: .5em;
box-shadow: 2px 2px 5px -2px rgba(0,0,0,0.5);
}
</style>
<script>
2011-05-02 10:34:26 +00:00
$(function() {
function notify( input ) {
2011-05-28 00:52:13 +00:00
var msg = "Selected " + $.trim( input.data( "tooltip-title" ) || input.text() );
$( "<div>" )
.appendTo( document.body )
.text( msg )
.addClass( "notification ui-state-default ui-corner-bottom" )
.position({
my: "center top",
at: "center top",
of: window
})
.show({
effect: "blind"
})
.delay( 1000 )
.hide({
effect: "blind",
duration: "slow"
}, function() {
$( this ).remove();
});
}
2011-05-28 00:52:13 +00:00
$( "button" ).each(function() {
var button = $( this ).button({
2011-05-02 10:34:26 +00:00
icons: {
2011-05-28 00:52:13 +00:00
primary: $( this ).data( "icon" )
2011-05-02 10:34:26 +00:00
},
2011-05-28 00:52:13 +00:00
text: !!$( this ).attr( "title" )
2011-05-02 10:34:26 +00:00
});
button.not( ".menu" ).click(function() {
notify( button );
});
2011-05-02 10:34:26 +00:00
});
2011-05-28 00:52:13 +00:00
$( ".set" ).buttonset({
items: "button"
2011-05-02 10:34:26 +00:00
});
$( "button.menu" )
.click(function() {
$( document ).tooltip( "close", { currentTarget: this });
var menu = $( this ).next().show().position({
my: "left top",
at: "left bottom",
of: this
});
$( document ).one( "click", function() {
menu.hide();
});
return false;
})
.next()
.hide()
.menu({
selected: function( event, ui ) {
notify( ui.item );
}
});
2012-09-10 15:33:46 +00:00
$( document ).tooltip({
2011-05-02 10:34:26 +00:00
position: {
my: "center top",
at: "center bottom+5",
2011-05-02 10:34:26 +00:00
},
show: {
duration: "fast"
},
hide: {
effect: "hide"
}
2011-05-02 10:34:26 +00:00
});
});
</script>
</head>
<body>
2011-05-28 00:52:13 +00:00
<div class="player">Here Be Video (HTML5?)</div>
<div class="tools">
<span class="set">
<button data-icon="ui-icon-circle-arrow-n" title="I like this">Like</button>
<button data-icon="ui-icon-circle-arrow-s">I dislike this</button>
</span>
<div class="set">
<button data-icon="ui-icon-circle-plus" title="Add to Watch Later">Add to</button>
<button class="menu" data-icon="ui-icon-triangle-1-s">Add to favorites or playlist</button>
<ul>
<li><div>Favorites</div></li>
<li><div>Funnees</div></li>
<li></li>
<li><div>New playlist...</div></li>
</ul>
2011-05-02 10:34:26 +00:00
</div>
2011-05-28 00:52:13 +00:00
<button title="Share this video">Share</button>
2013-11-18 22:45:12 +00:00
<button data-icon="ui-icon-alert">Flag as inappropriate</button>
2011-05-28 00:52:13 +00:00
</div>
2011-05-02 10:34:26 +00:00
<div class="demo-description">
2011-05-02 11:01:27 +00:00
<p>A fake video player with like/share/stats button, each with a custom-styled tooltip.</p>
2012-09-10 15:33:46 +00:00
</div>
2011-05-02 10:34:26 +00:00
</body>
</html>