目前我正在做一个项目:通过网页控制电机。我的网页会将数据发送到S7 1200 PLC,然后由它控制电机。这是我的网页的样子:
当我单击电源按钮时,它将向PLC发送数据(如果它发送1,则PLC启动电机,否则电机将停止。电源按钮是一种复选框类型,我使用css将其样式设置为看起来像按钮。
这是我的主文件中电源按钮的html代码:index.html
<tr>
<th align="left" style="text-align:justify" id ="start"> START MOTOR
</th>
<th class="button off"><span class = "fa fa-power-off"></span><input type="checkbox" id='"webdata".Start'/>
</th>
</tr>
这是html代码,用于显示电机的状态(如果它正在运行或未运行):
<tr>
<th align="left" style="text-align:justify">STATUS:
</th>
<th id="Status_Run">STOP
</th>
</tr>
这是我的css来设置电源按钮的样式:
.button {
float: right;
position: relative;
height: 55px;
width: 55px;
border-radius: 50%;
cursor: pointer;
box-shadow: -1px -1px 0px 3px rgb(34,34,34),
0px 7px 20px 3px rgb(17,17,17),
inset 0px 4px 2px 0px rgba(250, 250, 250, .2),
inset 1px -9px 35px 3px rgba(0, 0, 0, .5);
background-color: rgb(83,87,93);
top: 1px;
//color: #fff;
//text-shadow: 0px 0px 3px rgb(250,250,250);
outline: none;
left: -13px;
transform: translate3d(0,0,0);
transition: 0.5s;
}
.button input[type=checkbox] {
-webkit-appearance: none;
}
.button.on {
width: 55px;
content: "";
display: block;
height: 55px;
position: relative;
border-radius: 50%;
//-webkit-box-shadow: inset 0 1px 2px #F83953, inset 0 6px 1px 1px rgba(144, 59, 59,1);
transform: translate3d(-2px,3px,0);
transition: 0.5s;
//top: -2px;
background-color: rgb(83,87,93);
box-shadow: 0px 0px 0px 0px rgb(34,34,34),
0px 3px 7px 0px rgb(17,17,17),
inset 0px 0px 0px 3px cyan,
inset 0px -10px 35px 5px rgba(0, 0, 0, .5);
}
繁花不似锦
慕容森
相关分类