Jump to content

ProgramPotato

Members
  • Posts

    23
  • Joined

  • Last visited

Previous Fields

  • Languages
    HTML, CSS, (some) Python

ProgramPotato's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. yeah something like that, just the bubble tip facing down
  2. Hello, I know that there is a way to do this already, <a href="blahblahblah.html" title="piece of information"> I want the same thing to happen, but be customizable and look the same in all browsers and OSs, and be able to add pictures. Is there a way to do this?
  3. Below is code I have for a slideshow: <div id="thepic" valign="center"><input type="image" src="ArrowLeft.png" value="<" onclick="move('down')" id="left"/><input type="image" src="ArrowRight.png" value=">" onclick="move('up')" id="right"/></div><input type="image" src="Stop.png" value="stop" onclick="pause()" id="stop" /><script type="text/javascript">var pics=["Placeholder.png", "Placeholder.png", "Placeholder.png", "Placeholder.png"];pics.unshift(pics.pop())function move(dir){if(timer){clearTimeout(timer)}if(dir=="down"){pics.unshift(pics.pop())} if(dir=="up"){pics.push(pics.shift()) }timer=setTimeout(function (){move(dir)}, 5000)document.getElementById("thepic").style.backgroundImage="url("+pics[0]+")";}var timer=setTimeout(function (){move("up")}, 5000) function pause(){clearTimeout(timer);}</script></div> I was wondering if there is a way to get a fading effect in between pictures, so it looks cleaner. What i really want is an effect like on iOS devices when you slide from picture to picture. I've seen both of these done before and I'd like to have this effect. Thanks!
  4. I got it to display the first image, but there is still a pause in the beginning. I don't know how to get the rolling effect
  5. I understand this. That is what i did originally, but I don't want it to open an email, i want to just send the form to my email with whatever they entered in.
  6. thank you. So do you mean after i host my website i will be able to use php?
  7. I don't know php very well, so i have no idea if it's on a server or not
  8. It's your code, the one you gave me. Try it in an html document. The last 6 characters don't get included in the php
  9. Thanks, but how do i get the ending "; } ?> out of my page? I think it's broken. Do i have to save it as a separate file?
  10. Hello, In the tororials of w3chools it has a toutorial for form building and then sending through email. When the submit button is pressed, an email dialog box from wichever email program you are using poppes up. I would not like that to happen, I just want the email to be sent without the person being able to edit it to their will. Hopefully, there is a way! EDIT: I was using an html mailto instead of php. I don't know php. So I need help
  11. Thanks. It's not like i have a game that only works in IE or something. I should just let it go. And there is a way, btw.
  12. Hi, I know there is a way to detect browsers with javascript, and i would like to have this in my website, but what I find on the internet doesn't give me exactly what I want. I want a sentence to display only in Chrome and Safari: And i want every other browser to display this: Hope it works out!
×
×
  • Create New...