IndexEqProcess.cshtml
822 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
40
41
42
43
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
ViewData["title"] = "IOT/SIM作业指导书";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section header
{
<style type="text/css">
img {
vertical-align: middle;
}
/* https://www.cnblogs.com/neromaycry/p/8088828.html */
.img-responsive {
position: fixed;
top: 30px;
left: 0;
width: 100%;
height: 100%;
min-width: 1000px;
z-index: -10;
zoom: 1;
background-color: #fff;
background-repeat: no-repeat;
background-size: cover;
background-position: center 0;
}
#projectNameEle {
font-size: larger;
padding: 7px;
}
</style>
}
<div class="vueApp">
<div id="projectNameEle"> </div>
<img id ="eq_area_img" class="img-responsive" src="~/images/equipment/eq-action-liucheng.jpg" />
</div>
@section Scripts
{
}