There is a element in HMTL that I would like to move. It is simple. The problem is the element should move in specified degrees, for example 30° deg. How can I do that in JavaScript (and with CSS rotate)?
Thanks for all the answers.
There is a element in HMTL that I would like to move. It is simple. The problem is the element should move in specified degrees, for example 30° deg. How can I do that in JavaScript (and with CSS rotate)?
Thanks for all the answers.
function Moveit() {
document.getElementById("div1").style.transform = "rotate(-30deg)";
}
function Moveit2() {
document.getElementById("div1").style.transform = "rotate(30deg)";
}
If I understand it well, you can use Math.cos
and Math.sin
to get the horizontal and vertical components of the desired vector, and then increase the top
and left
properties:
(function() {
var box = document.getElementById('box'),
top = 0,
left = 0,
angle = 30 * Math.PI / 180, // 30 degrees
speed = 1,
deltaX = Math.cos(angle) * speed,
deltaY = Math.sin(angle) * speed;
setInterval(function() {
box.style.top = (top += deltaY) + 'px';
box.style.left = (left += deltaX) + 'px';
}, 60);
})();
#box {
height: 50px;
width: 50px;
position: relative;
background: blue;
}
<div id="box"></div>
Click somewhere. jsfiddle.net/o9zd5tvp/19/
Or Run snippet below.
Rotate
only do rotation "in a place".You can move only by changing position (left and top).
(each element in HTML is just a block at point x,y)
Don't forget to set
position: absolute
in css to makediv
floatable.