Сообщение от kulbabka
|
Сработало так
|
Оно и по-моему работает...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
li {
height: 200px;
border: 1px solid;
}
</style>
<script type='text/javascript'>
window.onload = function(){
var obj = document.querySelectorAll('#list-holder img');
for(var j = 0; j < obj.length; j++){
var par=obj[j].parentNode;
obj[j].style.marginLeft = ((par.clientWidth - obj[j].clientWidth)/2) + 'px';
obj[j].style.marginTop = ((par.clientHeight - obj[j].clientHeight)/2) + 'px';
};
};
</script>
</head>
<body>
<ul id="list-holder">
<li><img src="images/image01.jpg" alt="image" width="132" height="92"/></li>
<li><img src="images/image05.jpg" alt="image" width="83" height="60"/></li>
<li><img src="images/image09.jpg" alt="image" width="90" height="83"/></li>
</ul>
</body>
</html>
Просто вариантов реализации можно сделать достаточно много...