-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactive_plugins.html
56 lines (56 loc) · 1.56 KB
/
active_plugins.html
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
<html lang="en" >
<head>
<title>PlayStation® Plugins</title>
</head>
<script>
javascript:window.resizeTo(screen.width,screen.height)
</script>
<style>
body { background-image:url("https://raw.githubusercontent.com/nikolaevich23/man/master/ap.jpg");
background-size: 100% auto;
background-attachment: scroll;
margin-top: 3%;
margin-left: 8%;
margin-right: 8%;
marginbottom: 8%;
body {background-color:#000000;}
body {color:white;}
}
.center {
margin: 0;
position: absolute;
top: 35%;
left: 27%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.wrap {
width: 335px;
height: 180px;
overflow: hidden;
}
iframe {
-webkit-transform: scale(3);
transform: scale(3);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
</style>
<body>
<div class="container">
<div class="center">
<iframe class="wrap" id="myFrame" width="600px" height="10px" src="http://localhost/dev_hdd0/boot_plugins.txt"></iframe>
</div>
</div>
</body>
<script>
var frame = document.getElementById('myFrame');
frame.onload = function () {
var body = frame.contentWindow.document.querySelector('body');
body.style.color = 'black';
body.style.fontWeight = 'bold'
<!-- body.style.fontSize = '20px'; -->
<!-- body.style.lineHeight = '20px'; -->
};
</script>
</html>