Сообщение от rebroff
|
Не то.
|
почему не то? zoom лучше задать числом а не процентами меньше мороки с переводом в число
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
body {
zoom: 0.9;
}
#first{
margin-top: 1000px;
}
.info_show{
height: 1000px;
display: block;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
$('.main_menu a').click(function () {
var destination = $(this.hash).offset().top,
zoom = +$('body').css('zoom') || 1;
$('body, html').animate({ scrollTop: destination * zoom }, 1000);
return false;
});
});
</script>
</head>
<body>
<div class='main_menu'><a href="#first">first</a>
</div>
<div id='first'>
<span class='info'>Информация3</span>
<div class='main'>
<span class='info_show '>текст3</span>
</div>
</div>
</body>
</html>