-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
131 lines (115 loc) · 4.52 KB
/
faq.html
File metadata and controls
131 lines (115 loc) · 4.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="PS2 Classics - FAQ" />
<meta property="og:description" content="FAQ for PS2 emulation on PS3." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ps3classics.github.io/ps2/faq.html" />
<meta property="og:image" content="https://ps3classics.github.io/ps2/icon.png" />
<meta name="description" content="Detailed PS2 Classics compatibility list with stats, guides, and updates." />
<meta name="author" content="PS3 Classics" />
<title>PS2 Classics - FAQ</title>
<style>
/* animated gradient background */
body {
margin: 0;
font-family: Arial, sans-serif;
color: #fff;
background: linear-gradient(-45deg, #002244, #004488, #001122, #003366);
background-size: 600% 600%;
animation: gradientShift 20s ease infinite;
min-height: 100vh;
display: flex;
flex-direction: column;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
nav {
background-color: rgba(0, 0, 0, 0.6);
display: flex;
justify-content: left;
padding: 1rem;
position: sticky;
top: 0;
z-index: 1000;
}
nav a {
color: #fff;
margin: 0 1rem;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
nav a:hover {
text-decoration: underline;
color: #aad4ff;
}
.container {
flex: 1;
text-align: center;
padding: 2rem;
}
h1 {
margin-bottom: 0.5rem;
font-size: 2rem;
text-shadow: 0 0 8px rgba(0,0,0,0.4);
}
p.lead {
max-width: 700px;
margin: 0 auto 2rem auto;
font-size: 1.1rem;
line-height: 1.5;
text-shadow: 0 0 4px rgba(0,0,0,0.5);
}
#last-updated {
margin-top: 1rem;
font-style: italic;
font-size: 0.9rem;
}
canvas {
max-width: 500px;
margin: 2rem auto;
}
footer {
background-color: rgba(0, 0, 0, 0.6);
text-align: center;
padding: 1rem;
font-size: 0.8rem;
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="faq.html">FAQ</a>
<a href="compatibility.html">Compatibility</a>
<a href="config-guide.html">CONFIG</a>
<a href="https://ps3classics.github.io/ps1">PS1</a>
<a href="https://ps3classics.github.io/psp">PSP</a>
</nav>
<div class="container">
<h1>Frequently Asked Questions</h1>
<h2>What is this site?</h2>
<p>This website aims to be the definitive resource for PS2 emulation on PS3.<br>Our focus is "PS2 Classics", the software emulator available for all PS3 models.</p>
<h2>Where does the data come from?</h2>
<p>Compatibility info is currently obtained from the <a href="https://www.psdevwiki.com/ps3/PS2_Classics_Emulator_Compatibility_List" style="color:#fff">PS3 Developer Wiki</a> compatibility list.</p>
<h2>Does this emulator work on any PS3?</h2>
<p>Yes. Sony developed a PS2 emulator for their digitally released "PS2 Classics" called "ps2_netemu". It is entirely software emulated and works on any model. Technical information and comparisons are also available on <a href="https://www.psdevwiki.com/ps3/PS2_Emulation" style="color:#fff">PS3 Developer Wiki</a>.</p>
<h2>How can I play PS2 games on any PS3?</h2>
<p>If you have Cobra CFW, you can simply place your ISO into the "PS2ISO" folder at the root of the HDD. Otherwise, install the game as a PKG. There is no compatibility difference as they both use netemu.
<br><br>The folks at <a href="https://ps2classicsvault.github.io/" style="color:#fff">PS2 Classics Vault</a> host hundreds of PS2 Classics, curated by hand and verified to work on any PS3.</p>
<h2>How can I contribute?</h2>
<p>If a game works perfectly, you may edit the Wiki directly.<br>If you test an untested game and discover it has issues, add it to the Wiki and open an issue via the <a href="https://github.com/ps3classics/ps2" style="color:#fff">GitHub repository</a>.</p>
<h2>My game has issues. How can I fix them?</h2>
<p>Check out the <a href="config-guide.html" style="color:#fff">config page</a> for more information.</p>
</div>
<footer>
Part of the PS3 Classics Project · <a href="https://github.com/ps3classics" style="color:#fff">GitHub</a>
</footer>
</body>
</html>