1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| <!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta http-equiv="cache-control" content="public, max-age=60">
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<meta name="author" content="Daniel Hagnoul">
<title>Test</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/sunny/jquery-ui.min.css">
<style>
</style>
</head>
<body>
<div id="ap"></div>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
"use strict";
$.fn.dvjhNum = function( ){
var
nbSlide = 4,
current = 0,
jObj = $( "<button/>", {
"data-num" : "-1",
"css" : {
"display" : "inline-block",
"text-align" : "center",
"height" :"30px",
"width" :"30px",
"line-height" : "30px",
"line-width" : "30px",
"color" : "white",
"background-color" : "gray",
"margin-right" : "10px"
},
"click" : function( event ){
alert( $( this ).data( "num" ) );
}
});
return this.each( function( i, item ){
for ( current = 1; current <= nbSlide; current++ ){
jObj
.clone( true, true)
.text( current )
.data( "num", current )
.appendTo( item );
}
});
};
$( function(){ // forme abrégée de $(document).ready( function( ){
$("#ap").dvjhNum();
});
$( window ).load( function(){
});
</script>
</body>
</html> |
Partager