Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<div class="block"></div> <div class="block"></div> <div class="block"></div>
.block{ margin: 10px; width: 100px; height: 100px; text-align: center; background-color: #447; }
window.onmousedown = function(e) { if(e.target.className == 'block') { e.target.onmousemove = function(e) { e.target.style.position = "absolute"; e.target.style.left = e.pageX-e.target.offsetWidth/2+"px"; e.target.style.top = e.pageY-e.target.offsetHeight/2+"px"; } e.target.onmouseup = function(e) { e.target.onmousemove = null; } } }
.a{ height: 20px; overflow: hidden; position: relative; } .a h1{ margin: 0; position: absolute; top: -80%; }