Раскрывающаяся панель на CSS


Это раскрывающаяся панель на CSS без использования изображений. При щелчке мышью по указателю, панель открывается, показывая некий контент и смещая содержимое страницы вниз. Работает во всех современных браузерах.

Демо-пример

Установка на сайт

1. Код в таблице внизу вставить в раздел head или файл стилей сайта:

Для выделения текста сделайте щелчок мышью.
Для увеличения окна, «подцепите» мышью правый нижний угол.



В таблице внизу я привёл для наглядности часть кода из CSS, отвечающая за открытие панели и её высоту. Если выставить значение высоты, недостаточное для показа всего контента, появится полоса прокрутки.

div.css3droppanel input[type="checkbox"]:checked ~ div { 
		height: 250px; /* Высота панели */ 
		opacity: 1;
		overflow: auto;
		}

2. А этот код скопируйте и расположите в разделе body в том месте, где желаете видеть панель:


<div class="css3droppanel">
<input type="checkbox" id="paneltoggle">
<label for="paneltoggle" title="Click to open Panel"></label>
<div class="content">

<!--panel content goes here-->

<p>CSS is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation, including elements such as the layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple pages to share formatting, and reduce complexity and repetition in the structural content (such as by allowing for tableless web design). CSS can also allow the same markup page to be presented in different styles for different rendering methods, such as on-screen, in print, by voice (when read out by a speech-based browser or screen reader) and on Braille-based, tactile devices. It can also be used to allow the web page to display differently depending on the screen size or device on which it is being viewed. White the author of a document typically links that document to a CSS style sheet. -Wikipedia</p><br><br>

<!--end panel content-->

</div>
</div>

В этом коде можно вписать свой текст в title="" и нужно разместить какой-нибудь контент.

Спасибо за внимание. Всего доброго! Посещайте мой сайт. Пока! L.M.


Ваше мнение по материалу, изложенному на сайте




  © 2015–2024  dynamic-site.olerant.ru  L.M. Служба поддержки Яндекс.Метрика