-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
58 lines (53 loc) · 1.99 KB
/
index.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
57
58
<!DOCTYPE html>
<html>
<title>F.LF Main</title>
<xmp theme="projectf">
# F.LF
<img style='float:right; margin-left:20px;' src="http://2.bp.blogspot.com/-k-My1B-YlaU/T8JUBAYpu9I/AAAAAAAAACI/OnCvkzFF5jw/s1600/logo_l1_s.png" height="80"/>
### the open source LF2
F.LF attempts a clean room implementation of the famous fighter game [LF2](http://lf2.net). The F stands for the effort of [Project F](http://project--f.blogspot.com).
<span id='mess'><br>try the [latest demo](demo/demo4.html)</span>
<div style='clear:both'></div>
<iframe id='demo' src='' style='display:none; border:none; width:850px; height:650px;'></iframe>
## Summary
- motivation
- LF2 is the most amazing fighter game ___ever___
- had a global community of sprite and data changers
- ☹ but LF2 is close sourced and sometimes limiting
- with F.LF we can
- ✎ have complete freedom to modify
- ✉ no source code copyright issues
- ✈ put in a web page, play anywhere
- ♛ continue the legend
- because F.LF is
- open source
- HTML5: works everywhere with a browser
- thriving for 99% compatibility with LF2
- we are calling for [contributors](docs/contribute.html), if you are a:
- programmer
- great! you can help the development
- data and sprite changer
- great! you can create mod like what you did for LF2
- you can help testing and fixing bugs
- game designer and developer
- awesome! we are close to production ready so keep [in touch](mailto:[email protected])
- read more
- [about the project](docs/project.html)
- [documentation set](docs/index.html)
- source code: main repository on [github/tyt2y3/F.LF](https://github.com/tyt2y3/F.LF/)
</xmp>
<script>
setTimeout(function()
{
if( window.innerWidth > 800)
{
var demo=document.getElementById('demo');
demo.src='demo/demo4.html?embed';
demo.style.display='';
document.getElementById('mess').style.display='none';
}
},1200);
</script>
<script src="docs/projectfdocs.js"></script>
<script src="docs/strapdown_0_2/strapdown.js"></script>
</html>