Jump to content

Bigeniad

Newbie
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Bigeniad

  1. var dragobject={z: 0, x: 0, y: 0, offsetx : null, offsety : null, targetobj : null, dragapproved : 0,initialize:function(){document.onmousedown=this.dragdocument.onmouseup=function(){this.dragapproved=0}},drag:function(e){var evtobj=window.event? window.event : ethis.targetobj=window.event? event.srcElement : e.targetif (this.targetobj.className=="drag"){this.dragapproved=1if (isNaN(parseInt(this.targetobj.style.left))){this.targetobj.style.left=0}if (isNaN(parseInt(this.targetobj.style.top))){this.targetobj.style.top=0}this.offsetx=parseInt(this.targetobj.style.left)this.offsety=parseInt(this.targetobj.style.top)this.x=evtobj.clientXthis.y=evtobj.clientY cursor: 'crosshair'if (evtobj.preventDefault)evtobj.preventDefault()document.onmousemove=dragobject.moveit}},moveit:function(e){var evtobj=window.event? window.event : eif (this.dragapproved==1){this.targetobj.style.left=this.offsetx+evtobj.clientX-this.x+"px"this.targetobj.style.top=this.offsety+evtobj.clientY-this.y+"px"return false}}}dragobject.initialize()Да, вот этот скрипт. Пробовал <div class="drag">, но тогда перемещение вообще не работает.
  2. Здравствуйте. Есть такой код: <a href="#" onclick="document.getElementById('id').style.display='block'; return false;">Кнопка</a><div style="position: absolute;top: 340px;left: 50px; display: none;" id="id"> <img src="images/img.png" class="drag"><a href="#" onclick="document.getElementById('id').style.display='none'; return false;"> <img src="images/hide.png"></a></div> При нажатии на кнопку, появляется картинка img.png, после нажатия на hide.png, она скрывается. Картинку img.png можно перемещать на странице, я бы хотел, чтобы img.png и кнопка "Скрыть" (images/hide.png) перемещались вместе, т.е .как-то скрепились. Можно ли так сделать?
  3. Здравствуйте! Я не совсем понимаю, как мне правильно сформулировать свой вопрос, но у меня на сайте есть страница, где пользователь может перемещать объекты, после этого получается образ его персонажа. Я бы хотел, чтобы человек мог сохранять полученное в 1 изображение себе на компьютер, просто нажав на 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