edit.html
805 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body style="cursor: auto;">
<style>
*{
padding: 0;
margin: 0;
}
.tags{
height: 22px;
background: white;
margin-left:20px;
margin-top:10px;
}
.tags > i{
background:url('__PUBLIC__/images/wrong.png');
background-repeat:no-repeat;
width: 16px;
height: 16px;
}
</style>
<img alt="" src="{$img}" >
<script src="__PUBLIC__/js/jquery-1.8.2.min.js"></script>
<script src="__PUBLIC__/js/jquery-ui.min.js" type="text/javascript"></script>
<script>
$(function(){
$( ".tags" ).draggable();
//alert(location.href);
});
$( ".tags").dblclick(function(){
$(this).hide();
})
</script>
</body>
</html>