I need to clone an object and I try to find how to retrieve class css attributes from mootools
css:
.card {
width: 109px;
height: 145px;
}
html:
<div id="cards">
<div class="card" id="c0">
<div class="face front"></div>
<div class="face back"></div>
</div>
</div>
js:
window.addEvent('domready', function(){
Duplicacartes();
});
function Duplicacartes(){
var uiCards= document.getElementById('cards');
for(var i=1;i<521;i++)
{
var clone = $('c0').clone();
clone.set('id', 'c'+i);
clone.setStyle('left', (clone.getStyle('width') + 20) * (i % 40));
clone.setStyle('top', (clone.getStyle('height') + 20) * Math.floor(i / 40));
clone.inject('cards','bottom');
}
but I have not result:
The function clone.getStyle(), not gets the class CSS attributes, only the 'element' attributes. I was tryed for a lot of ways without success.
$('c'+i).getStyle('width');
$('c'+i).style.width;
...
What is the way to do this? thanks
I don't think you can get that from the cloned element, but you could copy that from the original and use .getComputedSize() like this:
So your function could look like:
Fiddle
Note:
- I added also
position:absolute;
to the css.-
.getComputedSize()
is part of More, so you need to load More also.