static
This commit is contained in:
41
static/Magic4/Sketch/HMI_Sketch_Left_LearnBezierAB_Sch3.html
Normal file
41
static/Magic4/Sketch/HMI_Sketch_Left_LearnBezierAB_Sch3.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<!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 SketchLeftLearnBezierABSch3PostMessage(str){
|
||||
parent.window.postMessage(
|
||||
str,
|
||||
"*" //or "www.parentpage.com"
|
||||
);
|
||||
}
|
||||
|
||||
function Button_OK(){
|
||||
var str="LearnBezierABSch3:OK#";
|
||||
SketchLeftLearnBezierABSch3PostMessage(str);
|
||||
}
|
||||
function Button_Cancel(){
|
||||
var str="LearnBezierABSch3:Cancel#";
|
||||
SketchLeftLearnBezierABSch3PostMessage(str);
|
||||
}
|
||||
</script>
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
<tr>
|
||||
<p>
|
||||
<input type=button class="btn" id="Button_OK" value="OK" onclick=Button_OK() style="background:lightgreen"></input>
|
||||
</p>
|
||||
</tr>
|
||||
<tr>
|
||||
<p>
|
||||
<input type=button class="btn" id="Button_Cancel" value="Cancel" onclick=Button_Cancel() style="background:lightcoral"></input>
|
||||
</p>
|
||||
</tr>
|
||||
</body>
|
||||
<script src="../js/drag.js"></script>
|
||||
</html>
|
||||
Reference in New Issue
Block a user