<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; HTML/CSS: Вертикальный скроллинг изображения с тенью при прокрутке]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=10248&amp;type=atom" />
	<updated>2014-12-16T20:29:37Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10248</id>
		<entry>
			<title type="html"><![CDATA[Re: HTML/CSS: Вертикальный скроллинг изображения с тенью при прокрутке]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=89485#p89485" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>greg zakharov пишет:</cite><blockquote><p>Простите, а Вы вообще понимаете принципы разметки?</p></blockquote></div><p>Не все. Но если бы понимал хорошо, то не спрашивал бы. С другой стороны если бы совсем ничего не понимал, то и спросить не смог бы <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /><br />Так возможно сделать появление этой тени над картинкой?</p>]]></content>
			<author>
				<name><![CDATA[avens]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24487</uri>
			</author>
			<updated>2014-12-16T20:29:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=89485#p89485</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HTML/CSS: Вертикальный скроллинг изображения с тенью при прокрутке]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=89484#p89484" />
			<content type="html"><![CDATA[<p>Простите, а Вы вообще понимаете принципы разметки?</p>]]></content>
			<author>
				<name><![CDATA[greg zakharov]]></name>
			</author>
			<updated>2014-12-16T19:59:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=89484#p89484</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[HTML/CSS: Вертикальный скроллинг изображения с тенью при прокрутке]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=89441#p89441" />
			<content type="html"><![CDATA[<p>В этом примере при прокрутке появляется внизу и вверху полоска с тенью, но если вместо текста добавить картинку, то тень не появляется, как сделать что бы в этом примере тень появлялась также и при прокрутке изображения?<br />Орыгинальный пример <a href="http://shpargalkablog.ru/2012/12/scrolling-css.html">здесь</a>, там где Красивый вертикальный скроллинг<br /></p><div class="codebox"><pre><code>&lt;html&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;Вертикальный скроллинг изображения с тенью при прокрутке&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;style&gt;
.scrollbox {
 overflow: auto;
 width: 880px;
 max-height: 400px;
 margin: 30px auto;
 background:
  linear-gradient(white 30%, rgba(255,255,255,0)),
  linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
  radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.2), rgba(0,0,0,0)),
  radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;
 background-repeat: no-repeat;
 background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
 background-attachment: local, local, scroll, scroll;
}
&lt;/style&gt;

&lt;div class=&quot;scrollbox&quot;&gt;
 &lt;ul&gt;
  &lt;li&gt;Тени нет сверху.&lt;/li&gt;
  &lt;li&gt;2&lt;/li&gt;
  &lt;li&gt;3&lt;/li&gt;
  &lt;li&gt;4&lt;/li&gt;
  &lt;li&gt;5&lt;/li&gt;
  &lt;li&gt;6&lt;/li&gt;
  &lt;li&gt;Начинаем прокручивать блок&lt;/li&gt;
  &lt;li&gt;8&lt;/li&gt;
  &lt;li&gt;9&lt;/li&gt;
  &lt;li&gt;10&lt;/li&gt;
  &lt;li&gt;11&lt;/li&gt;
  &lt;li&gt;12&lt;/li&gt;
  &lt;li&gt;13&lt;/li&gt;
  &lt;li&gt;14&lt;/li&gt;
  &lt;li&gt;15&lt;/li&gt;
  &lt;li&gt;16&lt;/li&gt;
  &lt;li&gt;17&lt;/li&gt;
  &lt;li&gt;18&lt;/li&gt;
  &lt;li&gt;19&lt;/li&gt;
  &lt;li&gt;20&lt;/li&gt;
  &lt;li&gt;21&lt;/li&gt;
  &lt;li&gt;22&lt;/li&gt;
  &lt;li&gt;23&lt;/li&gt;
  &lt;li&gt;24&lt;/li&gt;
  &lt;li&gt;25&lt;/li&gt;
  &lt;li&gt;26&lt;/li&gt;
  &lt;li&gt;27&lt;/li&gt;
  &lt;li&gt;Конец!&lt;/li&gt;
  &lt;li&gt;Тут нет тени снизу.&lt;/li&gt;
 &lt;/ul&gt;

 &lt;img src=&quot;file://localhost/С:/image.png&quot; alt=&quot;&quot; /&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[avens]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24487</uri>
			</author>
			<updated>2014-12-16T13:00:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=89441#p89441</id>
		</entry>
</feed>
