Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
3.2.1 Update
Browse files Browse the repository at this point in the history
Fixed issue where Supersized loader wasn't displaying initially. Theme files unaffected.
  • Loading branch information
samdunn committed Jun 27, 2011
1 parent 4b8434f commit 06e4f51
Show file tree
Hide file tree
Showing 15 changed files with 962 additions and 31 deletions.
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,11 @@ Documentation can be found on the official project page: [http://www.buildintern

*** Changelog ***

6/27/11 - 3.2.1

*Fixed Supersized loader not displaying initially (theme files unaffected)
*Supersized project page now updated

6/20/11 - 3.2.0 Early Release

*Documentation, announcement post, and project page update to follow
Expand Down
4 changes: 2 additions & 2 deletions core/core.html
Expand Up @@ -4,7 +4,7 @@

<!--
Supersized - Fullscreen Slideshow jQuery Plugin
Version : Core 3.2.0
Version : Core 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Expand All @@ -20,7 +20,7 @@
<link rel="stylesheet" href="css/supersized.core.css" type="text/css" media="screen" />

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="js/supersized.core.3.2.0.min.js"></script>
<script type="text/javascript" src="js/supersized.core.3.2.1.min.js"></script>

<script type="text/javascript">

Expand Down
6 changes: 4 additions & 2 deletions core/css/supersized.core.css
@@ -1,7 +1,7 @@
/*
Supersized - Fullscreen Slideshow jQuery Plugin
Version : Core 3.2.0
Version : Core 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Expand All @@ -11,9 +11,11 @@
*/

* { margin:0; padding:0; }
body { background:#111; }
body { background:#111; height:100%; }
img{ border:none; }

#supersized-loader { position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; background:url(../img/progress.gif) no-repeat center center;}

#supersized { position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; }
#supersized img{ width:auto; height:auto; position:relative; outline:none; border:none; }

Expand Down
1 change: 0 additions & 1 deletion core/js/supersized.core.3.2.0.min.js

This file was deleted.

@@ -1,7 +1,7 @@
/*
Supersized - Fullscreen Slideshow jQuery Plugin
Version : Core 3.2.0
Version : Core 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Expand All @@ -15,7 +15,7 @@
/* Place Supersized Elements
----------------------------*/
$(document).ready(function() {
$('body').append('<div id="supersized"></div>');
$('body').append('<div id="supersized-loader"></div><div id="supersized"></div>');
});


Expand Down Expand Up @@ -86,6 +86,7 @@
base.launch = function(){

base.$el.css('visibility','visible');
$('#supersized-loader').hide(); //Hide loading animation

// Adjust image when browser is resized
$(window).resize(function(){
Expand Down
13 changes: 13 additions & 0 deletions core/js/supersized.core.3.2.1.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions core/random.html
Expand Up @@ -4,7 +4,7 @@

<!--
Supersized - Fullscreen Slideshow jQuery Plugin
Version : Core 3.2.0
Version : Core 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Expand All @@ -20,7 +20,7 @@
<link rel="stylesheet" href="css/supersized.core.css" type="text/css" media="screen" />

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="js/supersized.core.3.2.0.min.js"></script>
<script type="text/javascript" src="js/supersized.core.3.2.1.min.js"></script>

<script type="text/javascript">

Expand Down
4 changes: 3 additions & 1 deletion slideshow/css/supersized.css
Expand Up @@ -2,7 +2,7 @@
Supersized - Fullscreen Slideshow jQuery Plugin
Version : 3.2.0
Version : 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Company : One Mighty Roar (www.onemightyroar.com)
Expand All @@ -14,6 +14,8 @@
body { background:#111; height:100%; }
img{ border:none; }

#supersized-loader { position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; background:url(../img/progress.gif) no-repeat center center;}

#supersized { position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; }
#supersized img{ width:auto; height:auto; position:relative; display:none; outline:none; border:none; }
#supersized.speed img { -ms-interpolation-mode:nearest-neighbor; image-rendering: -moz-crisp-edges; } /*Speed*/
Expand Down
4 changes: 2 additions & 2 deletions slideshow/demo.html
Expand Up @@ -4,7 +4,7 @@

<!--
Supersized - Fullscreen Slideshow jQuery Plugin
Version : 3.2.0
Version : 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Expand All @@ -23,7 +23,7 @@
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.min.js"></script>

<script type="text/javascript" src="js/supersized.3.2.0.min.js"></script>
<script type="text/javascript" src="js/supersized.3.2.1.min.js"></script>
<script type="text/javascript" src="theme/supersized.shutter.min.js"></script>

<script type="text/javascript">
Expand Down
4 changes: 2 additions & 2 deletions slideshow/fade.html
Expand Up @@ -4,7 +4,7 @@

<!--
Supersized - Fullscreen Slideshow jQuery Plugin
Version : 3.2.0
Version : 3.2.1
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Expand All @@ -23,7 +23,7 @@
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.min.js"></script>

<script type="text/javascript" src="js/supersized.3.2.0.min.js"></script>
<script type="text/javascript" src="js/supersized.3.2.1.min.js"></script>
<script type="text/javascript" src="theme/supersized.shutter.min.js"></script>

<script type="text/javascript">
Expand Down
14 changes: 0 additions & 14 deletions slideshow/js/supersized.3.2.0.min.js

This file was deleted.

0 comments on commit 06e4f51

Please sign in to comment.