forked from mikemelon/java-exam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamComposeTypes.jsp
More file actions
94 lines (85 loc) · 3.1 KB
/
Copy pathexamComposeTypes.jsp
File metadata and controls
94 lines (85 loc) · 3.1 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
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Java考试系统--抽题组卷类型</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link type="text/css" rel="stylesheet" href="css/fontawesome-all.min.css">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css">
<link type="text/css" rel="stylesheet" href="css/material_icons.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
font-family: Roboto, "Microsoft YaHei";
}
.my-opacity{
opacity:0.6;
}
.my-opacity:hover{
opacity:1;
}
a{
color: #2e7d32;
}
</style>
</head>
<body>
<%@ include file="include/header.jsp" %>
<div id="main">
<div class="container" style="padding: 20px;">
<div class="divider" style="height: 20px; background: #fff;"></div>
<div class="row">
<div class="col s12 m6">
<div class="card">
<div class="card-image waves-effect waves-block waves-light my-opacity">
<a href="<s:url action="examcompose"/>"><img class="activator" src="images/choicequestion1.jpg"></a>
</div>
<div class="card-content">
<a href="<s:url action="examcompose"/>">
<span class="card-title activator light-green-text text-darken-4">固定组卷
<i class="fas fa-sign-in-alt fa-lg right light-green-text"></i></span></a>
<p><a href="<s:url action="examcompose"/>">固定组卷</a></p>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card">
<div
class="card-image waves-effect waves-block waves-light my-opacity">
<a href="<s:url action="examcomposerandom"/>"><img class="activator" src="images/blankquestion1.jpg"></a>
</div>
<div class="card-content">
<a href="<s:url action="examcomposerandom"/>">
<span class="card-title activator light-green-text text-darken-4">随机抽题组卷
<i class="fas fa-sign-in-alt fa-lg right light-green-text"></i></span></a>
<p><a href="<s:url action="examcomposerandom"/>">随机抽题组卷</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<%@ include file="include/footer.jsp"%>
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script>
$(document).ready(function () {
$('.modal-trigger').leanModal({
dismissible: true, //是否点模态对话框外面就可以关闭
opacity: 0.6, //接近1,不透明
});//使用模态对话框,必须有这句
$(".button-collapse").sideNav({
menuWidth: 200, // Default is 240
edge: 'left', // Choose the horizontal origin
closeOnClick: true // Closes side-nav on <a> clicks, useful for Angular/Meteor
});
$(".collapsible").collapsible({
accordion: true
});
})
</script>
</body>
</html>