You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unashamedly technical documentation can be found here: [SequenceJS Demo](http://www.sequencejs.com/documentation.html). Quick guides are on their way!
22
+
Technical documentation can be found here: [SequenceJS Demo](http://www.sequencejs.com/documentation.html).
23
23
24
24
##Author
25
-
[Ian Lunn](http://twitter.com/#!/IanLunn) (say hi on Twitter!)
25
+
[@Ian Lunn](http://twitter.com/#!/IanLunn)
26
26
27
27
##License
28
28
sequence.js is a FREE script and is dual licensed under the following:
- HashTag Support. Options to enable hashTags so that the URL will update whenever a frame becomes active. The hashTag name can either be taken from a frame's ID attribute or a data attribute named `data-sequence-hash`
40
+
- Due to a bug in Opera 11 and a not-so-great workaround, Opera 11 support is now the equivalent of Internet Explorer 7-9. Opera 12+ works fine.
41
+
- General tidy up of code
42
+
43
+
38
44
###v0.6.8 10/07/2012
39
45
- Added "Slide" fallback theme and made it the default. "Slide" provides better support for older versions of Internet Explorer because opacity is no longer needed. In the original "Fade" fallback, opacity was used which caused a black halo around PNGs.
40
46
- Added new option `hideFramesUntilPreloaded`, which is `true` by default. When `true`, frames will be hidden as soon as Sequence is loaded and then shown when everything has preloaded.
<p>The hashTag options are to be used with <ahref="http://benalman.com/projects/jquery-hashchange-plugin/" title="">Ben Alman's jQuery HashChange plugin</a>.</p>
976
+
<p>Please place a reference to the jQuery HashChange plugin above your reference to the Sequence plugin, like so:</p>
<td>If true, when a frame is navigated to and becomes active, the hashTag will change to reflect the frames ID. In the following example, when the first frame becomes active, the URL will be changed to end with the hashTag <solid>#intro</solid>. <solid>intro</solid> is taken from the list item's ID attribute.
995
+
<pre><code><div id="sequence">
996
+
<ul>
997
+
<li id="intro">
998
+
<h2 class="title animate-in">Built using Sequence.js</h2>
999
+
</li>
1000
+
</ul>
1001
+
</div></code></pre>
1002
+
</td>
1003
+
</tr>
1004
+
<tr>
1005
+
<td>hashDataAttribute</td>
1006
+
<td>true/false</td>
1007
+
<td>false</td>
1008
+
<td>Whether the hashTag should be taken from a list items ID attribute or a data attribute named data-sequence-hash<br/><br/><strong>true</strong>: Use the data attribute named data-sequence-hash.<br/><strong>false</strong>: Use the ID attribute<br/><br/>In the following example, when hashDataAttribute is true and the first frame becomes active, the URL will be changed to end with the hashTag <solid>#superAwesome</solid>.
<h2 class="title animate-in">Built using Sequence.js</h2>
1013
+
</li>
1014
+
</ul>
1015
+
</div></code></pre>
1016
+
</td>
1017
+
</tr>
1018
+
<tr>
1019
+
<td>hashChangesOnFirstFrame</td>
1020
+
<td>true/false</td>
1021
+
<td>false</td>
1022
+
<td>Whether the hashTag should be changed when the first frame becomes active<br/><br/><strong>true</strong>: The hashTag will change as soon as the first frame reaches its "animate-in" position.<br/><strong>false</strong>: The hashTag will not change when the first frame becomes active but will change for every other frame after that.</td>
1023
+
</tr>
1024
+
</tbody>
1025
+
</table>
972
1026
973
1027
<h4id="options-fallback">Complete List of Fallback Theme Options</h4>
974
1028
<p>The fallback theme options control Sequence when it is being viewed in browsers that do not support CSS3 transitions. When in these browsers, Sequence will fallback to a theme that animates each frames opacity -- fading in and out of frames.</p>
0 commit comments