<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.stephanschlegel.de/index.php?action=history&amp;feed=atom&amp;title=CSS_Transitions_-_Snippets</id>
	<title>CSS Transitions - Snippets - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.stephanschlegel.de/index.php?action=history&amp;feed=atom&amp;title=CSS_Transitions_-_Snippets"/>
	<link rel="alternate" type="text/html" href="https://wiki.stephanschlegel.de/index.php?title=CSS_Transitions_-_Snippets&amp;action=history"/>
	<updated>2026-05-06T23:28:34Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Wikizone</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://wiki.stephanschlegel.de/index.php?title=CSS_Transitions_-_Snippets&amp;diff=22336&amp;oldid=prev</id>
		<title>37.49.32.84: Die Seite wurde neu angelegt: „Bootstrap Dropdown mit FadeIn Transition  &lt;syntaxhighlight lang=&quot;css&quot;&gt; /* Bootstrap Dropdown Tweak */ .dropdown .dropdown-menu{     display: block;     opacity…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.stephanschlegel.de/index.php?title=CSS_Transitions_-_Snippets&amp;diff=22336&amp;oldid=prev"/>
		<updated>2017-05-29T13:19:32Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „Bootstrap Dropdown mit FadeIn Transition  &amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt; &lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Bootstrap Dropdown Tweak: &lt;/span&gt; .dropdown .dropdown-menu{     display: block;     opacity…“&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Bootstrap Dropdown mit FadeIn Transition&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* Bootstrap Dropdown Tweak */&lt;br /&gt;
.dropdown .dropdown-menu{&lt;br /&gt;
    display: block;&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
&lt;br /&gt;
    -moz-transition:    all 1000ms ease;&lt;br /&gt;
    -webkit-transition: all 1000ms ease;&lt;br /&gt;
    -o-transition:      all 1000ms ease;&lt;br /&gt;
    -ms-transition:     all 1000ms ease;&lt;br /&gt;
    transition:         all 1000ms ease;&lt;br /&gt;
}&lt;br /&gt;
.dropdown:hover .dropdown-menu {&lt;br /&gt;
    display: block;&lt;br /&gt;
    opacity: 1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Alternative oder auch Fallback für jQuery (muß noch in eine modernizr Anfrage)&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
$(function(){&lt;br /&gt;
  var $menu = $(&amp;#039;.dropdown-menu&amp;#039;);&lt;br /&gt;
&lt;br /&gt;
  $(&amp;#039;.dropdown-toggle&amp;#039;).hover(&lt;br /&gt;
    function() {&lt;br /&gt;
      $menu.css(&amp;#039;opacity&amp;#039;,1);&lt;br /&gt;
    },&lt;br /&gt;
    function() {&lt;br /&gt;
      $menu.css(&amp;#039;opacity&amp;#039;,0);&lt;br /&gt;
    });&lt;br /&gt;
})();&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>37.49.32.84</name></author>
	</entry>
</feed>