Jump to content
  • 0

Имитация консоли


Tmin10
 Share

Question

Делаю небольшую имитация консоли и появилось несколько вопросов:

1) Как убрать у textarea полосу прокрутки, сохранив саму прокрутку?

2) Как сделать, что бы прокрутка textarea была в самом низу, после вывода скриптом?

3) Что не хватает консоли до уровня киношных консолей из фильмов про хакеров?

4) Как добиться свечения текста в опере?

5) Сейчас консоль полностью резиновая, как ограничить ширину только до 1280 пикселей, чтобы до этого тянулась, но больше не растягивалась?

Сама консоль: http://tmin10.net.ru/console.html

Edited by Tmin10
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

1) Как убрать у textarea полосу прокрутки, сохранив саму прокрутку?

Проблема в IE скролла не будет, но текст не дает прокрутку

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style>
textarea{width:100px;
overflow:hidden;
height:100px;}
div{border:1px solid red;
overflow:hidden;
width:100px;
float:left;}
</style>

</head>

<body>
<div id="one">
<textarea>

</textarea>
</div>
</body>
</html>

можно убрать прокрутку так


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style>
textarea{width:110px;/***закрыл скролл на 10px***/

overflow-y:scroll;
height:100px;}
div{border:1px solid red;
overflow:hidden;
width:100px;
float:left;}
</style>

</head>

<body>
<div id="one">
<textarea>

</textarea>
</div>
</body>
</html>


Вроде работает,символ не перекрывает.

ИЛИ через http://markup-javascript.com/2009/05/24/krossbrauzernyj-mousewheel-obrabotka-sobytiya-skrolinga/

Edited by dostel1
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