Jump to content

Атом

Newbie
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Атом

  1. Все разобрался, схитрить немного пришлось, Sammasati спс за направление
  2. У меня формирование этой таблицы происхожид с помощью Javascript, использую события onresize, получаю центр каждой ячейки, но смысл в другом. Вы 2 дива закинули в 1 див к рисунку, я же так не могу тэг закрытия </div> перенести за 2 остальных дива, отвечающих за прицел, так как использую .innerHTML для добавления дивов по очереди... Может есть какой вариант другой? с z-index?
  3. Прошу помочь реализовать одну идею, есть таблица из 1 строки и 2 колонок, размеры таковы( высота 100% ширина каждой колонки 50% от ширины экрана). В каждой ячейке фотография, нужно поставить прицел в центр каждой ячейки. Код <html> <head> <style type="text/css"> html { height: 100% } body { height: 100%; margin: 0; padding: 0 } </style> </head> <body> <table height="100%" width="100%"> <tr> <td height="100%" width="50%" bgcolor="#CC9900"> <div id="okno1" style="height:100%;"><img src="1.jpg" height="886" width="955"></div> <div style="position: absolute; width:3px; height:50px; background:#f00;top:418px; left:478px; margin-bottom:-50px"></div> <div style="position: absolute; relative; width:50px; height:3px; background:#f00;top:443px; left:453px;line-height:1px"></div> </td> <td height="100%" width="50%" bgcolor="#006633"> <div id="okno2" style="height:100%"><img src="1.jpg" height="886" width="955"></div> <div style="position: relative; width:3px; height:50px; background:#f00;top:418px; left:474px; margin-bottom:-50px"></div> <div style="position: relative; width:50px; height:3px; background:#f00;top:443px; left:449px;line-height:1px"></div> </td> </tr> </table> </body> </html> Условие, координаты прицела должны быть идентичны. С помощью position: absolute можно привязать только к 1-ой ячейке пицел, а вот как привязать прицел ко-второй?
×
×
  • 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