Jump to content

ProgramPotato

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by ProgramPotato

  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!
  13. I have this code I'm using 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"];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)}, 3000)document.getElementById("thepic").style.backgroundImage="url("+pics[0]+")";}var timer=setTimeout(function (){move("up")}, 3000) function pause(){clearTimeout(timer);}</script> I would like the slideshow to have a sliding effect (like when you slide through images on an iOS device) when it plays through the images. I know this is possible but i'm not sure how to do that. Also, it starts out blank and then displays the second image (skipping the first). How can i make this not happen? Thanks!
  14. Nope. They are both PNG's. True, i could use a border and background color. It would be more efficient, except for the browsers that don't support CSS3
  15. Hello. In this image: There are two images with the same color gray(look at chrome). In Firefox, notice how the teo images look different. How do i fix this?
  16. Never mind. I figured it out. I had to use separate divs in the html and then apply backgrounds.
  17. Hello, I was wondering if there is a way to have a top image, a bottom, image, and a stretchable, resizable, middle image that would make the page resize and still look normal. If there is any way to do this, it would be appreciated. Attachments: Background.png - what i want the background to look like BG_______ - the images that i want to use to make a resizable but non-destructive background Thank you!
×
×
  • Create New...