Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
momg [2024/09/18 01:41] – created GlitchyZoruamomg [2024/10/28 23:56] (current) – [Trivia] GlitchyZorua
Line 1: Line 1:
 ====== MoMG Gif Gallery ====== ====== MoMG Gif Gallery ======
-**MoMG Gif Gallery** or just **MoMG** is a Gif Gallery that can be found in the Projects NavBar, and Site Map Tile J6. It has 99,969 GIFs as of writing this article. +**MoMG Gif Gallery** or just **MoMG** is a Gif Gallery that can be found in the Projects NavBar, and Site Map Tile J6. It has 99,969 GIFs as of writing this article. Each room has it's own unique randomly generated name (except for "The First Room"), and tend to have 5 to 25 gifs, randomly picked, surrounded in a picture frame. To go to the next room, locate the door ({{:i-49995.gif?30|}}) and click on it! This page can be visited [[https://momg.neocities.org/index.html|here]]. It is a mixed bag of modern gifs, and gifs from the 90s.  
 + 
 +On the top left, There is a speaker button that will disable the Music. 
 + 
 + 
 + 
 +Song used: //Walking Together by Siddhartha Corsus// 
 + 
 +Ambient sound used: https://freesound.org/people/UCL_Sound/ 
 + 
 + {{ :momg-badge.gif?200|}}{{ :momg-badge-static.gif?200|}} 
 + 
 +MoMg gallery has its own Mastodon account, which you can visit [[https://toot.melonland.net/@momg|here]] 
  
 <note important>**MoMG does have some problematic images!** <note important>**MoMG does have some problematic images!**
Line 7: Line 20:
 This page is a non-commercial art project. All the gifs on this site have been collected from the web and I BELIEVE them to be in the public domain. This page is a non-commercial art project. All the gifs on this site have been collected from the web and I BELIEVE them to be in the public domain.
  
-If there is anything inappropriate, send melon a link to the gif and he'll remove it. If you're an individual who made a gif and don't want it on here, email me. ALTERNATIVELY, if you are a big company and want to file a copyright suit, send a message to Kyle the IP address owner and he can do what he thinks best. +If there is anything inappropriate, send melon a link to the gif and he'll remove it. If you're an individual who made a gif and don't want it on here, email melon. ALTERNATIVELY, if you are a big company and want to file a copyright suit, send a message to Kyle the IP address owner and he can do what he thinks best. 
 </note> </note>
 +
 +{{ :screenshot_2024-09-17_at_16-25-46_momg.png?400|}}
 +
 +
 +
 +
 +====== Trivia ======
 +- The First Room is always the same 8 gifs!
 +
 +====== Breaking the code ======
 +
 +Forcefully go to the next room
 +<code>
 +room();</code> 
 +
 +You can also do this as well
 +<code>
 +newRoom();</code>
 +
 +
 +Puts the graphic in a frame
 +{{ ::screenshot_2024-10-28_at_15-44-04_html_online_viewer.png?400|}}
 +
 +<code>
 +<link rel="stylesheet" type="text/css" href="https://momg.neocities.org/frames.css" /><div class="picture-frame-1"><img src="https://momg.neocities.org/gifs/i-41399.gif" /></div>
 +</code>
 +
 +Random name generator
 +<code>
 +<script src="https://momg.neocities.org/names.js" charset="utf-8"></script><script>alert(randomFullName());</script>
 +</code>
 +
 +Audio Toggle
 +<code>
 +audioToggle();
 +</code>
 +
 +
 +Sets the number of paintings in a room
 +<code>
 +g.settings.minRoomSize // 5
 +</code>
 +
 +<code>
 +g.settings.maxRoomSize // 25
 +</code>
 +
 +Optimizations for the back button.
 +<code>
 +updateHistory()</code>
 +
 +Tells if song should be on or off.
 +<code>
 +g.global.playMusic // true
 +</code>
 +
 +Outputs the total amount of gifs in the gallery
 +<code>
 +g.settings.frameSize</code>