Jump to content

Безумный Маркс

Newbie
  • Posts

    7
  • Joined

  • Last visited

Безумный Маркс's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. не, я в английском не силён) т.е. всё-таки можно обойтись без серверных языков?
  2. Здравствуйте, у меня на сайте есть небольшой скрип фотогалереи, который выводит фотографию и меняет её при нажатии кнопок назад или вперёд. Мне надо добавить функцию, которая помимо фотографии будет выводить рядомещё и описание фотографии. Т.е. на сервере лежит фото в jpg и описание в txt. Можно ли это сделать только в JS, или надо использовать другие языки? Я мало знаком с JS, поэтому прошу помочь мне доработать скрипт. <script> var slide = new Array; var pictureName = new Array("flower[1].jpg", "flower[2].jpg", "flower[3].jpg", "flower[4].jpg"); for (var i = 0; i < pictureName.length; i++) { slide[i] = new Image(); slide[i].src = pictureName[i]; } var m = new Array(0, 100); var nextImage = 0; var t = ""; function next(step) { if (t != "") return; nextImage = nextImage + step; if (nextImage == pictureName.length) { nextImage = 0; } if (nextImage == -1) { nextImage = pictureName.length - 1; } document.getElementById("before").src = slide[nextImage].src; } </script> <img id="before" src="flower[1].jpg"> <a href="java script:next(-1)" class="navigation"><< Назад</a> <a href="java script:next(1)" class="navigation">Вперед >></a>
  3. ээээ, если чесно, незнаю, а у меня ещ? один вопрос, касающийся форм, как сделать так. чтоб то что я ввожу в поле text после отправки отражалось в поле label?
  4. Мб странно, но меню не работает в IE, а в Opera и FifeFox работает :/.
  5. Меню работает, когда я навожу мышку на пунт, открываются подпункты, и вс? что под меню смещается вниз, как сделать так, чтоб подменю не сдвигало вс? вниз, а открывалось поверх содержимого табицы, вот код <html> <head> <title>Clan Surreal</title> <Script language="JavaScript" type="text/javascript"> function startMenu() { if (document.getElementById) { nav = document.getElementById('menu'); for (i=0; i<nav.childNodes.length; i++) { node = nav.childNodes[i]; if (node.nodeName == 'LI') { node.onmouseover = function() { this.className = 'over'; } node.onmouseout = function() { this.className = ''; } } } } } </script> <style type="text/css"> UL { list-style: none; margin: 0px; padding: 0px; font-family: Arial, sans-serif; font-size: 11pt } UL LI { position: relative; backround: white; float: left; padding: 4px 0px; margin-right: 4px } UL LI UL LI { padding: 0px } LI UL { position: relative; margin-left: 0px; display: none; width: 100px; margin-top: 0px } HTML LI UL { left: 5px; top: 21px } LI A { padding: 3px; text-decoration: none; color: #666; border: 1px solid #ccc; background: no-repear } LI UL LI A { display: block; padding: 4px; width: 100px; border-bottom: none: background-image: none } LI A:hover { color: black; background-color: blue } LI A:hover UL, LI.over UL { display: block } .brd { border-bottom: 1px solid #ccc } .hero { overflow: scroll; overflow-x: hidden; paddig: 7px; width: 100%; height: 150px; } .hero1 { overflow: scroll; overflow-x: hidden; paddig: 7px; width: 100%; height: 220px; } </style> <style type="txt/css"> UL LI { float: left } </style> </head> <body onLoad="startMenu()"> <table border="line.GIF" width=100% cellpadding=5 cellspacing=0 cols=3 summary> <tr> <td colspan=3> <img src="up.png" width=100% height=20px alt=''> </td> </tr> <tr> <td colspan=2> <UL id=menu> <LI><a href=index.html>First</a> </LI> <LI><a href=news.html>News</a> <UL> <LI><a href=linkr1.html>Age of Conan</a></LI> <LI><a href=linkr2.html>Everguest II</a></LI> <LI><a href=linkr3.html>Lotr Online</a></LI> <LI><a href=linkr4.html>Warnament</a></LI> <LI><a href=linkr5.html>Vanguard</a></LI> <LI><a href=linkr6.html>Potbs online</a></LI> </UL> </LI> <LI><a href=composition.html>Composition</a> <UL> <LI><a href=linkd1.html>Age of Conan</a></LI> <LI><a href=linkd2.html>Everguest II</a></LI> <LI><a href=linkd3.html>Lotr Online</a></LI> <LI><a href=linkd4.html>Warnament</a></LI> <LI><a href=linkd5.html>Vanguard</a></LI> <LI><a href=linkd6.html>Potbs online</a></LI> <LI><a href=linkd6.html>Text</a></LI> </UL> </LI> <LI><a href=composition.html>Composition</a> <UL> <LI><a href=linkc1.html>Age of Conan</a></LI> <LI><a href=linkc2.html>Everguest II</a></LI> <LI><a href=linkc3.html>Lotr Online</a></LI> <LI><a href=linkc4.html>Warnament</a></LI> <LI><a href=linkc5.html>Vanguard</a></LI> <LI><a href=linkc6.html>Potbs online</a></LI> <LI><a href=linkc6.html>Text</a></LI> </UL> </LI> <LI><a href=composition.html>Composition</a> <UL> <LI><a href=linkc1.html>Age of Conan</a></LI> <LI><a href=linkc2.html>Everguest II</a></LI> <LI><a href=linkc3.html>Lotr Online</a></LI> <LI><a href=linkc4.html>Warnament</a></LI> <LI><a href=linkc5.html>Vanguard</a></LI> <LI><a href=linkc6.html>Potbs online</a></LI> <LI><a href=linkc6.html>Text</a></LI> </UL> </LI> <LI><a href=composition.html>Composition</a> <UL> <LI><a href=linkc1.html>Age of Conan</a></LI> <LI><a href=linkc2.html>Everguest II</a></LI> <LI><a href=linkc3.html>Lotr Online</a></LI> <LI><a href=linkc4.html>Warnament</a></LI> <LI><a href=linkc5.html>Vanguard</a></LI> <LI><a href=linkc6.html>Potbs online</a></LI> <LI><a href=linkc6.html>Text</a></LI> </UL> </LI> </UL> </td> <td rowspan=3> <div class=hero1> werwerwerwe </div> </td> </tr> <tr> <th> News </th> <th> Composition </th> </tr> <tr> <td> <div class=hero> werwerwerwe </div> </td> <td> <div class=hero> werwrwerwre </div> </td> </tr> </table> </body> </html>
  6. Да те две ошибки я исправил, а вот третья походу то что надо, спасибо!
  7. меню не работает(((( оч долго проверял в ч?м дело, так и на заработало вот код: посмотрите плиз в ч?м дело </table> </body><html> <head> <title>Clan Surreal</title> <Script language="JavaScript" type="text/javascript"> function startMenu() { if (document.getElementById) { nav = document.getElementById('menu'); for (i=0; i<nav.childNodes.length; i++) { node = nav.childNodes[i]; if (node.nodeName == 'LI') { node.onmouseout = function() { this.className = 'over'; } node.onmouseout = function() { this.className = ''; } } } } } </script> <style type="text/css"> UL { list-style: none; margin: 0px; padding: 0px; font-family: Arial, sans-serif; font-size: 11pt } UL LI { position: relative backround: white; float: left; padding: 4px 0px; margin-right: 4px } UL LI UL LI { padding: 0px } LI UL { position: absolute; display: none; width: 180px; margin-top: 3px } HTML LI UL { left: 0px; top: 21px } LI A { padding: 3px; text-decoration: none; color: #666; border: 1px solid #ccc; background: no-repear } LI UL LI A { display: block; padding: 4px; width: 180px; border-bottom: none: background-image: none } LI A:hover { color: black; background-color: blue } LI A:hover UL, LI.over UL { display: block } .brd { border-bottom: 1px solid #ccc } .hero { overflow: scroll; overflow-x: hidden; paddig: 7px; width: 100%; height: 150px; } .hero1 { overflow: scroll; overflow-x: hidden; paddig: 7px; width: 100%; height: 220px; } </style> <style type="txt/css"> UL LI { float: left } </style> </head> <body onLoad="startMenu()"> <table border="line.GIF" width=100% cellpadding=5 cellspacing=0 cols=3 summary> <tr> <td colspan=3> <img src="up.png" width=100% height=20px alt=''> </td> </tr> <tr> <td colspan=2> <UL id=menu> <LI><a href=index.html>First</a> </LI> <LI><a href=news.html>News</a> <UL> <LI><a href=linkr1.html>Age of Conan</a></LI> <LI><a href=linkr2.html>Everguest II</a></LI> <LI><a href=linkr3.html>Lotr Online</a></LI> <LI><a href=linkr4.html>Warnament</a></LI> <LI><a href=linkr5.html>Vanguard</a></LI> <LI><a href=linkr6.html>Potbs online</a></LI> </UL> </LI> <LI><a href=composition.html>Composition</a> <UL> <LI><a href=linkc1.html>Age of Conan</a></LI> <LI><a href=linkc2.html>Everguest II</a></LI> <LI><a href=linkc3.html>Lotr Online</a></LI> <LI><a href=linkc4.html>Warnament</a></LI> <LI><a href=linkc5.html>Vanguard</a></LI> <LI><a href=linkc6.html>Potbs online</a></LI> <LI><a href=linkc6.html>Text</a></LI> </UL> </LI> </UL> </td> <td rowspan=3> <div class=hero1> werwerwerwe </div> </td> </tr> <tr> <th> News </th> <th> Composition </th> </tr> <tr> <td> <div class=hero> werwerwerwe </div> </td> <td> <div class=hero> werwrwerwre </div> </td> </tr> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy