37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" id="container" onmousedown="startDrag(event)" onmouseup="stopDrag(event)" onmousemove="dragging(event)" style="overflow-x: hidden;
|
|
overflow-y: hidden; ">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="../css/bootstrap.min.css"/>
|
|
<link rel="stylesheet" href="../css/btn.css"/>
|
|
<link rel="stylesheet" href="../css/sketchBtn.css"/>
|
|
<script type="text/javascript" type="text/javascript">
|
|
function SketchLeftRemoveStationSch0PostMessage(str){
|
|
parent.window.postMessage(
|
|
str,
|
|
"*" //or "www.parentpage.com"
|
|
);
|
|
}
|
|
|
|
function Button_RemoveSingleStation(){
|
|
SketchLeftRemoveStationSch0PostMessage("RemoveSingleStation");
|
|
}
|
|
|
|
function Button_RemoveAllStation(){
|
|
SketchLeftRemoveStationSch0PostMessage("RemoveAllStation");
|
|
}
|
|
</script>
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
HMI_Sketch_Left_RemoveStation_Sch0
|
|
<p>
|
|
<input type=button class="btn" id="Button_RemoveSingleStation" value="Button_RemoveSingleStation" onclick=Button_RemoveSingleStation() style="background:lightblue"></input>
|
|
</p>
|
|
<p>
|
|
<input type=button class="btn" id="Button_RemoveAllStation" value="Button_RemoveAllStation" onclick=Button_RemoveAllStation() style="background:lightblue"></input>
|
|
</p>
|
|
</body>
|
|
<script src="../js/drag.js"></script>
|
|
</html> |