Home Entrance Wiki Search Login Register

Welcome, Guest. Please login or register.
March 06, 2023, 02:06:49 am
Forum activity rating: Five Star Posts: 100/24hrs Show Unread Posts | Unread Replies | Own Posts | Recent Posts
News: :4u: ~~~~~~~~~~~  :4u:

Show Posts

* Messages | Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - dotmidi

Pages: 1 ... 13 14 [15] 16
211
 :ozwomp: :ozwomp: OH MY GOODNESS i just saw my site inside the webring im so excited!! im going to put the badge in my dusted off and unused webring collection
THIS IS MY FIRST WEBRING WAHOO


212
⛺︎ ∙ Cinema / Re: Perfect Blue
« on: December 02, 2022, 04:37:07 pm »
I've watched it three times and I don't think it ever stopped being confusing to me
still love that movie though

definitely watch Paprika if you haven't yet
YEAH! ive been totally planning on watching paprika when i have the time :4u:

213
☺︎ ∙ Chat & General Interests / Re: Pieces of media that changed you?
« on: December 02, 2022, 04:36:27 pm »
"Who Will Cut Our Hair When We're Gone?" by The Unicorns :ozwomp: :ozwomp:

214
☞ ∙ Life on the Web / Re: DECEMBER DECEMBER DECEMBER
« on: December 02, 2022, 04:35:37 pm »
I'm actually just about to finish putting up the first website and I think I'm gonna add some winter stuff! Where can i find your page? I'd love to see it!!!!! :ozwomp:
i hvaent coded anything seasonal yet but i am very excitedto do so once i finish up my website :ha:

215
☔︎ ∙ Help & Tutorials / Re: Moving Eyeballs!
« on: December 01, 2022, 08:47:25 pm »
boosting this, i just want to know how to position it via coordinates or what have you :ozwomp:

216
☞ ∙ Life on the Web / DECEMBER DECEMBER DECEMBER
« on: December 01, 2022, 07:06:18 pm »
 :ozwomp: :ozwomp: :ozwomp:
OH MY GOODNESS ITS WINTER!!
Will you guys be decorating your webpages for this joyous season and holidays?
I'm considering having snowflakes on my web page!


217
You can never go wrong with linking W3Schools to help newbies with coding :smile:

218
☞ ∙ Life on the Web / Email Culture
« on: November 29, 2022, 03:04:08 pm »
Do any netizens send emails to each other on a regular basis? Once I sent an email to someone on neocities about their dubstep shrine!! :ozwomp:
When did you consider reaching out to someone via Email on the net? :smile:

219
☔︎ ∙ Help & Tutorials / Moving Eyeballs!
« on: November 29, 2022, 02:48:02 pm »
So I found this code from https://www.mf2fm.com/rv/dhtmlmovingeyes.php they have a lot of cool decorations!
Basically it is a set of moving eyeballs which is perfect for me because I love muppets
the issue is though, it is set and fixed on the center of the webpage and i am NOT good at javascript one bit
I understood how to not make it "fixed" however, i dont know how to put it on the top of my page and be able to serve as a header I suppose
here is the code if any of you are good at javascript :ozwomp:

Code
<script type="text/javascript">
// <![CDATA[
var width=144; // radius of the eyes in pixels
var colour="#06c"; // colour of the eye - bluey green in this case
var iris="#111"; //  colour of the iris (normally black);

/***************************\
*  Moving Eyeballs Effect *
*(c)2012-20 mf2fm web-design*
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
\***************************/
var swide=800;
var shigh=600;
var sleft=sdown=0;

var glasses, lefteyeball, righteyeball, lefteye, righteye;

function addLoadEvent(funky) {
 var oldonload=window.onload;
 if (typeof(oldonload)!='function':wink: window.onload=funky;
 else window.onload=function() {
  if (oldonload) oldonload();
  funky();
 }
}

addLoadEvent(draw_eyes);

function draw_eyes() {
 var i, j, l, r;
 glasses=document.createElement("div":wink:;
 i=glasses.style;
 i.position="fixed";
 i.top="50%";
 i.left="50%";
 i.width="1px";
 i.height="1px";
 i.overflow="visible";
 i.zIndex="100";
 i.pointerEvents="none";
 document.body.appendChild(glasses);
 lefteyeball=document.createElement("div":wink:;
 righteyeball=document.createElement("div":wink:;
 i=lefteyeball.style;
 j=righteyeball.style;
 i.position=j.position="absolute";
 i.width=j.width=(width*2)+"px";
 i.height=j.height=(width*2)+"px";
 i.top=j.top=(-width)+"px";
 i.left=(-2.1*width)+"px";
 j.left=(.1*width)+"px";
 i.borderRadius=j.borderRadius="50%";
 i.backgroundColor=j.backgroundColor=colour;
 i.background=j.background="radial-gradient(circle at "+width+"px "+width+"px, #fff, "+colour+" 75%)";
 i.opacity=j.opacity="0.5";
 i.zIndex=j.zIndex="100";
 glasses.appendChild(lefteyeball);
 glasses.appendChild(righteyeball);
 lefteye=document.createElement("div":wink:;
 righteye=document.createElement("div":wink:;
 i=lefteye.style;
 j=righteye.style;
 i.position=j.position="absolute";
 i.width=j.width=width+"px";
 i.height=j.height=width+"px";
 i.top=j.top=(-width/2)+"px";
 i.left=(-1.6*width)+"px";
 j.left=(.6*width)+"px";
 i.borderRadius=j.borderRadius="50%";
 i.backgroundColor=j.backgroundColor=iris;
 i.opacity=j.opacity="0.8";
 i.zIndex=j.zIndex="101";
 glasses.appendChild(lefteye);
 glasses.appendChild(righteye);
 set_width();
 set_scroll();
}


document.onmousemove=mouse;
function mouse(e) {
 var x, y, xdiff, ydiff, distn;

 y=(e)?e.pageY:event.y;
 x=(e)?e.pageX:event.x;
 x-=sleft;
 y-=sdown;

 xdiff=x+(1.1*width)-(swide*0.5);
 ydiff=y-shigh/2;
 distn=Math.pow(xdiff*xdiff+ydiff*ydiff,0.5);
 if (distn>width/2.5) {
  xdiff=xdiff*width/distn/2.5;
  ydiff=ydiff*width/distn/2.5;
 }
 lefteye.style.top=(ydiff-width/2)+"px";
 lefteye.style.left=(xdiff-1.6*width)+"px";

 xdiff=x-(1.1*width)-(swide*0.5);
 ydiff=y-shigh/2;
 distn=Math.pow(xdiff*xdiff+ydiff*ydiff,0.5);
 if (distn>width/2.5) {
  xdiff=xdiff*width/distn/2.5;
  ydiff=ydiff*width/distn/2.5;
 }
 righteye.style.top=(ydiff-width/2)+"px";
 righteye.style.left=(xdiff+0.6*width)+"px";
}

document.onscroll=set_scroll;
function set_scroll() {
 if (typeof(self.pageYOffset)=="number":wink: {
  sdown=self.pageYOffset;
  sleft=self.pageXOffset;
 }
 else if (document.body.scrollTop || document.body.scrollLeft) {
  sdown=document.body.scrollTop;
  sleft=document.body.scrollLeft;
 }
 else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  sleft=document.documentElement.scrollLeft;
	sdown=document.documentElement.scrollTop;
 }
 else {
  sdown=0;
  sleft=0;
 }
}

window.onresize=set_width;
function set_width() {
 var sw_min=999999;
 var sh_min=999999;
 if (document.documentElement && document.documentElement.clientWidth) {
  if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
 }
 if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
 }
 if (document.body.clientWidth) {
  if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
 }
 if (sw_min==999999 || sh_min==999999) {
  sw_min=800;
  sh_min=600;
 }
 swide=sw_min;
 shigh=sh_min;
}
// ]]>
</script>


220
⛺︎ ∙ Cinema / Perfect Blue
« on: November 29, 2022, 02:30:25 pm »
Just finished watching Perfect Blue and wow it was very.. engaging! and hard to understand, watched a few theory videos and I think I've gotten a better understanding hehe
To any Perfect Blue watchers, how did you feel with your first watch through?? (ALso.. I LOVE the art for this anime, it was very interesting story wise and perspective too its hard to tell when things r real or fake!! adds to the psychosis episode the protag is having)


221
I really need webrings to join so this would be awesome!! :cheesy:
I love to check up on the melonland forums for help and conversation so I hope you do make a webring for it :omg:

222
© ∙ Music Room / Re: Cozy 80s Music
« on: November 29, 2022, 02:17:59 pm »
 :cheesy: :cheesy: anything by The Cure is always cozy and comforting :eyes:

223
© ∙ Music Room / Song/Band You Are Growing Fond Of?
« on: November 29, 2022, 02:16:05 pm »
 :ozwomp: Let me know some songs you recently are gaining a liking towards
Mine are: Happiness Is A Warm Gun by The Beatles
and Give Me Back My Man by The B-52's!!
 :dive: stay safe netizens and i hope you have a good journey on the web today! :4u: :transport:

224
☞ ∙ Life on the Web / imood forums
« on: November 28, 2022, 06:51:02 pm »
do you guys read old forums at all on imoods? i've been reading ones all the way back from 2001 and its pretty entertaining :ozwomp: :ozwomp:
i feel like netizens have not really changed much from the past ehehe (in a good way) :4u:
below is an example of what i mean


225
☔︎ ∙ Help & Tutorials / Re: Repeating Background?? help!
« on: November 28, 2022, 06:47:15 pm »
thank you so much melon! :innocent:
knew i could count on u


Pages: 1 ... 13 14 [15] 16


Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | SMFPacks Super Quote Forum Guide | Rules | RSS | WAP2


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery!