admin管理员组文章数量:1341983
I am using ReactJs. I want to change a position of the image dynamically.
I am trying to set up style like described here:
My sprite.js:
'use strict';
import '../res/my_css.css'
const React = require('react');
const ReactDOM = require('react-dom');
class Sprite extends React.Component {
render() {
var left = 5000 + 'px';
var top = 5000 + 'px';
var padding = 5000 + 'px';
return (
<div id="bird" style={{padding:padding, left: left, top:top}}/>
)
}
}
export default Sprite;
ReactDOM.render(
<Sprite />,
document.getElementById('sprite')
)
My css contains:
#bird {
background:url('../res/bird.png');
background-repeat: no-repeat;
}
I see the image, but style={{padding:padding, left: left, top:top}}
does not applied.
If I look to the source code in Chrome, I see the style padding:5000px, left:5000px, top:5000px
. But my image is in the left top corner.
How can I dinamically change the position of the div element (image in my case) in ReactJs?
I am using ReactJs. I want to change a position of the image dynamically.
I am trying to set up style like described here:
My sprite.js:
'use strict';
import '../res/my_css.css'
const React = require('react');
const ReactDOM = require('react-dom');
class Sprite extends React.Component {
render() {
var left = 5000 + 'px';
var top = 5000 + 'px';
var padding = 5000 + 'px';
return (
<div id="bird" style={{padding:padding, left: left, top:top}}/>
)
}
}
export default Sprite;
ReactDOM.render(
<Sprite />,
document.getElementById('sprite')
)
My css contains:
#bird {
background:url('../res/bird.png');
background-repeat: no-repeat;
}
I see the image, but style={{padding:padding, left: left, top:top}}
does not applied.
If I look to the source code in Chrome, I see the style padding:5000px, left:5000px, top:5000px
. But my image is in the left top corner.
How can I dinamically change the position of the div element (image in my case) in ReactJs?
Share edited Mar 12, 2018 at 14:43 Drewness 5,0724 gold badges35 silver badges50 bronze badges asked Mar 12, 2018 at 14:24 RuFRuF 5581 gold badge12 silver badges32 bronze badges 2-
2
Have you set
position: absolute;
?top
andleft
will have no effect otherwise – Hunter McMillen Commented Mar 12, 2018 at 14:25 - @Hunter McMillen position: 'absolute' works, thank you. – RuF Commented Mar 12, 2018 at 14:42
2 Answers
Reset to default 5Try like this.You have not included position:absolute
class Sprite extends React.Component {
render() {
var left = 5000 + 'px';
var top = 5000 + 'px';
var padding = 5000 + 'px';
return (
<div id="bird" style={{padding, left, top,position:'absolute'}}/>
)
}
}
To play with left and top add position like this
<div id="bird" style={{position: 'relative', padding, left, top}}/>
本文标签: javascriptHow to change the position of the element dynamically in ReactJsStack Overflow
版权声明:本文标题:javascript - How to change the position of the element dynamically in ReactJs? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743684768a2521713.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论