Jump to content
  • 0

Промотка таблицы


sock4proxy
 Share

Question

Не уверен что вопрос именно в тему html, уж извините :(

необходимо симитировать полосу прокрутки, те

при нажатии на кнопку проматывать div по верткали на определенное кол-во пикселей.

каким образом это можно реализовать... понимаю что скорее всего с помощью javascript,

только непонятно что там с div'ом делать...

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Можно реализовать так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Title</title>
<script type="text/javascript">
scrollthis = function(len) {
document.getElementById('text').scrollTop += len;
return false;
}
</script>
</head>
<body>
<div id="text" style="width:200px;height:100px;overflow:scroll;">
<p>Lorem ipsum dolor sit amet consectetuer magna urna convallis Vivamus tincidunt. Congue a nibh nibh tempus Curabitur fermentum malesuada penatibus et vel. Volutpat adipiscing Nam Curabitur orci tincidunt nec tincidunt ut urna ac. Lorem vitae fringilla ut metus Morbi dignissim mauris a Sed eu. Sagittis tortor sapien sagittis quis ante leo libero volutpat ante a. Gravida velit tincidunt.</p>
</div>
<a href="#" onclick="return scrollthis(10);">вниз</a>
<a href="#" onclick="return scrollthis(-10);">вверх</a>
</body>
</html>

Функции scrollthis() переда?тся количество пикселей(в данном примере 10), на которые нужно прокрутить текст.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy