-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnipsFromJS.htm
More file actions
139 lines (97 loc) · 2.73 KB
/
SnipsFromJS.htm
File metadata and controls
139 lines (97 loc) · 2.73 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<style>
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button2 {background-color: #008CBA;} /* Blue */
.button3 {background-color: #f44336;} /* Red */
.button4 {background-color: #e7e7e7; color: black;} /* Gray */
.button5 {background-color: #555555;} /* Black */
.container {
position: relative;
}
/* Bottom right text */
.text-block {
position: absolute;
bottom: 20px;
right: 20px;
background-color: black;
color: white;
padding-left: 20px;
padding-right: 20px;
}
</style>
</head>
<body>
<div id="id01"></div>
<script>
var snipArr=[];
var snipArrGreen=[];
var out = "";
var out2 = "";
var out3 = "";
function snipsBlue(arr) {
var i;
for(i = 0; i<arr.length; i++) {
snipArr.push(arr[i].snip);
out +='<span class="button button2" id="'+ i +'" type="button" onclick="myFunction" style="width:25%">'+
arr[i].display + '</span>';
}
}
function snipsGreen(arr) {
var i;
for(i = 0; i<arr.length; i++) {
snipArrGreen.push(arr[i].snip);
out2 +='<span class="button" id="'+ i +'" type="button"draggable="true" ondragstart="drag(event)" style="width:25%">'+
arr[i].display + '</span>';
}
}
function snipsRed(arr) {
var i;
for(i = 0; i<arr.length; i++) {
snipArr.push(arr[i].snip);
out3 +='<span class="button button3" id="'+ i +'" type="button"draggable="true" ondragstart="drag(event)" style="width:25%">'+
arr[i].display + '</span>';
}
document.getElementById("id01").innerHTML = out+"<HR></HR>"+out2+"<HR></HR>"+out3;
}
</script>
<script>
function allowDrop(ev) {
ev.preventDefault();
}
function drag(ev) {
//alert(event.srcElement.id);
ev.dataTransfer.setData("text",snipArr[event.srcElement.id]);
}
function drop(ev) {
ev.preventDefault();
var data = ev.dataTransfer.getData("text");
ev.target.appendChild(document.getElementById(data));
}
function copy(ev) {
var copyText = ev.dataTransfer.getData("text");
copyText.select();
document.execCommand("copy");
alert("Copied the text: " + copyText.value);
function myFunction() {
alert("alert ");
}
}
</script>
</body>
<script src="snipsBlue.js"></script>
<script src="snipsGreen.js"></script>
<script src="snipsRed.js"></script>
</html>