-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.html
41 lines (37 loc) · 1.19 KB
/
demo.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>qtpie</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<div id="qtpie">
<div>
<svg viewbox="0 0 200 200">
<path class="Photoshop" data-pie="28" data-desc="Photoshop"/>
<path class="Illustrator" data-pie="7" data-desc="Illustrator"/>
<path class="InDesign" data-pie="15" data-desc="InDesign"/>
<path class="HTML5" data-pie="22" data-desc="HTML5"/>
<path class="CSS3" data-pie="28" data-desc="CSS3"/>
<circle transform="translate(100, 100)">
</svg>
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/qtpie.js"></script>
<script>
$(function(){
qtpie.init({
id : '#qtpie',
defaultMsg : 'Skills',
radius : 70,
list : false,
hover : true});
})
</script>
</body>
</html>