我的投稿.html
3.9 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_575637_dcp58t87sus4te29.css" />
<link rel="stylesheet" type="text/css" href="../css/init.css" />
<link rel="stylesheet" type="text/css" href="../css/weui.css" />
<link rel="stylesheet" type="text/css" href="../css/myweui.css" />
<link rel="stylesheet" type="text/css" href="../css/Youth_Literary_Creation.css" />
<script src="../js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../js/base.js" type="text/javascript" charset="utf-8"></script>
<title>我的投稿</title>
</head>
<body>
<div class="container">
<div class="main">
<div class="main_list">
<a href="Youth_Literary_Creation_res.html">
<p class="title">
时尚设计第一期:设计师姚谦
</p>
<img src="http://feiyi.test.bronet.cn/themes/simplebootx_mobile/Public/assets/img/pic4.jpg" class="list_image" />
</a>
<div class="main_list_res">
<div class="main_list_res_left" style='justify-content:flex-start;'>
<p class="author">青年文创</p>
<p style="font-size: 0.28rem;font-family: PingFangSC-Regular;color: RGBA(102, 102, 102, 1);padding-left:0.2rem;padding-right:0.2rem;">|
<p>
<p class="data">
创作时间:2018.1.23
</p>
</div>
</div>
</div>
</div>
</div>
<div id="toast" style="display:none;">
<div class="weui-mask_transparent"></div>
<div class="weui-toast">
<i class="weui-icon-safe-warn weui-icon_toast"></i>
<p class="weui-toast__content">已完成</p>
</div>
</div>
<div id="toastsuccess" style="display:none;">
<div class="weui-mask_transparent"></div>
<div class="weui-toast">
<i class="weui-icon-success-no-circle weui-icon_toast"></i>
<p class="weui-toast__content">已完成</p>
</div>
</div>
<div class="mask">
<div class="mask_main">
<div class="mask_head">投稿请前往电脑端</div>
<div class="mask_content">
<div class="mask_copy" onclick="copy()">复制链接</div>
<div class="mask_cendel">取消</div>
</div>
</div>
</div>
</body>
<style>
.mask {
width: 100%;
height: 100%;
position: fixed;
top: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.6);
z-index: 10;
}
.mask_main {
width: 6rem;
height: 3rem;
border-radius: 0.1rem;
background-color: rgba(255, 255, 255, 1);
overflow: hidden;
}
.mask_head {
width: 100%;
height: 2.2rem;
box-sizing: border-box;
border-bottom: 0.01rem solid RGBA(170, 170, 170, 1);
font-size: 0.3rem;
text-align: center;
line-height: 2.2rem;
font-family: PingFangSC-Regular;
color: rgba(34, 34, 34, 1);
}
.mask_content {
width: 100%;
height: 0.8rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.mask_copy {
width: 50%;
height: 100%;
background-color: RGBA(200, 176, 115, 1);
font-size: 0.28rem;
font-family: PingFangSC-Regular;
color: rgba(255, 255, 255, 1);
text-align: center;
line-height: 0.8rem;
}
.mask_cendel {
width: 50%;
height: 100%;
background-color: RGBA(255, 255, 255, 1);
font-size: 0.28rem;
font-family: PingFangSC-Regular;
color: RGBA(153, 153, 153, 1);
text-align: center;
line-height: 0.8rem;
}
</style>
<script src="../js/public.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
function copy()
{
var clipBoardContent=this.location.href;
// window.clipboardData.setData('Text', text)
window.clipboardData.setData("text",clipBoardContent);
alert("复制成功!");
}
window.onload = function () {
mysear_group.mysearch("#search_value", ".icon-search");
}
</script>
</html>