-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
075b9a4
commit d31dc5d
Showing
39 changed files
with
143 additions
and
700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,32 @@ | ||
# manual | ||
<br> | ||
<br> | ||
</a> | ||
welcome to: | ||
<H3>handle</H3> | ||
welcome to:<br> | ||
<H3>manual</H3><br> | ||
For educational purposes only.<br> | ||
you only need<br> | ||
hardware: iphone<br> | ||
software: phpwin iphone app<br> | ||
http web server with php<br> | ||
how to write html,js,css,and php.<br> | ||
know how to write html,js,css,and php.<br> | ||
no internet connection needed<br> | ||
After you download<br> | ||
edit anything and everything<br> | ||
this should work offline<br> | ||
no external functions<br> | ||
no external hyperlinks<br> | ||
no cookies,no gps,no mic,no camera,<br> | ||
no puchase buttons.<br> | ||
my name is morgan shatee' byers,<br> | ||
my number is 770-687-8847<br> | ||
<br> | ||
<a href="http://morgansbyers.scienceontheweb.net"> | ||
Visit website to see handle demo</a> | ||
<br> | ||
<br> | ||
<a href="https://github.com/jehovahsays/handle"> | ||
<a href="https://github.com/jehovahsays/manual"> | ||
handle github repository</a> | ||
<br> | ||
<br> | ||
<a href="https://youtube.com/@jehovahsaysnetworth?si=FRrFrG_K02C38K_G"> | ||
youtube channel</a> | ||
|
||
<br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,113 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>handle</title> | ||
<meta name="viewport" content="width=device-width"/> | ||
</head> | ||
<body> | ||
<center> | ||
<button> | ||
<a href="./server/browser.html"> | ||
Start Game | ||
</a> | ||
</button> | ||
</center> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="charset=UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="viewport" content="user-scalable=yes, initial-scale=1.0, maximum-scale=1.0" /> | ||
<meta name="theme-color" media="(prefers-color-scheme: light)" content="cyan" /> | ||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black" /> | ||
<link rel="icon" type="image/png" href="./favicon.ico"> | ||
<link rel="shortcut icon" href="./favicon.ico" media="(prefers-color-scheme: dark)"/> | ||
<link rel="shortcut icon" href="./favicon.ico" media="(prefers-color-scheme: light)" /> | ||
<meta name="theme-color" media="(prefers-color-scheme: light)" content="cyan" /> | ||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black" /> | ||
<link rel="stylesheet" type="text/css" href="./files/main.css"></link> | ||
<style> | ||
search { | ||
position: center; | ||
margin: 50px; | ||
border-radius: 25px; | ||
padding: 0; | ||
top: 25; | ||
left: 0; | ||
width: 70%; | ||
} | ||
list { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
} | ||
.handle { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
font-size: 1.2em; | ||
padding: 0px; | ||
animation: fadeIn 0.5s ease-in-out; | ||
} | ||
.handle:last-child { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
border-bottom: none; | ||
} | ||
@keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
transform: translateY(-10px); | ||
} | ||
to { | ||
opacity: 1; | ||
transform: translateY(0); | ||
} | ||
} | ||
} | ||
</style> | ||
<title>search</title> | ||
</head> | ||
<body> | ||
<script> | ||
function handle() { | ||
|
||
let input = document.getElementById('list').value; | ||
|
||
input = input.toLowerCase(); | ||
|
||
let x = document.getElementsByClassName('handle'); | ||
|
||
for (i = 0; i < x.length; i++) { | ||
|
||
if (!x[i].innerHTML.toLowerCase().includes(input)) { | ||
|
||
x[i].style.display = "none"; | ||
|
||
} | ||
|
||
else { | ||
|
||
x[i].style.display = "list-item"; | ||
|
||
} | ||
|
||
} | ||
|
||
} | ||
</script> | ||
<center> | ||
<br> | ||
<input | ||
id="list" | ||
onkeyup="handle()" | ||
onkeydown="return event.key != 'Enter';" | ||
placeholder="search" | ||
type="search" | ||
style="search" | ||
class="search" | ||
maxlength="140" | ||
autocomplete="true" | ||
autocorrect="on" | ||
autocapitalize="off" | ||
spellcheck="true"> | ||
</form> | ||
<br> | ||
</center> | ||
<center> | ||
<ul id="list"> | ||
<a href="./browser.html" class="handle"><button>start game</button></a></br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"en": | ||
{ | ||
"manual": | ||
{ | ||
"connect":"en/connect", | ||
"connected":"en/connected" | ||
}}} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.