Browse Source

Improved fullscreen using CSS

Tobias Reich 11 years ago
parent
commit
43d6b3d4cd
3 changed files with 16 additions and 20 deletions
  1. 0 0
      assets/build/main.css
  2. 14 8
      assets/css/imageview.css
  3. 2 12
      assets/js/view.js

File diff suppressed because it is too large
+ 0 - 0
assets/build/main.css


+ 14 - 8
assets/css/imageview.css

@@ -9,7 +9,7 @@
 	display: none;
 	display: none;
 	width: 100%;
 	width: 100%;
 	min-height: 100%;
 	min-height: 100%;
-	background-color: rgba(10,10,10,.99);
+	background-color: rgba(10,10,10,.98);
 
 
 	-webkit-transition: background-color .3s;
 	-webkit-transition: background-color .3s;
 }
 }
@@ -19,7 +19,7 @@
 		background-color: inherit;
 		background-color: inherit;
 	}
 	}
 	#imageview.full {
 	#imageview.full {
-		background-color: #040404;
+		background-color: rgba(0,0,0,1);
 	}
 	}
 
 
 	/* ImageView ------------------------------------------------*/
 	/* ImageView ------------------------------------------------*/
@@ -47,12 +47,18 @@
 		animation-duration: .3s;
 		animation-duration: .3s;
 		animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
 		animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
 	}
 	}
-	#imageview #image.small {
-		top: 50%;
-		right: auto;
-		bottom: auto;
-		left: 50%;
-	}
+		#imageview #image.small {
+			top: 50%;
+			right: auto;
+			bottom: auto;
+			left: 50%;
+		}
+		#imageview #image.full {
+			top: 0px;
+			right: 0px;
+			bottom: 0px;
+			left: 0px;
+		}
 
 
 	/* Previous/Next Buttons ------------------------------------------------*/
 	/* Previous/Next Buttons ------------------------------------------------*/
 	#imageview .arrow_wrapper {
 	#imageview .arrow_wrapper {

+ 2 - 12
assets/js/view.js

@@ -22,12 +22,7 @@ view = {
 						marginTop: -1*($("#imageview #image").height()/2)+20
 						marginTop: -1*($("#imageview #image").height()/2)+20
 					});
 					});
 				} else {
 				} else {
-					$("#imageview #image").css({
-						top: 60,
-						right: 30,
-						bottom: 30,
-						left: 30
-					});
+					$("#imageview #image").removeClass('full');
 				}
 				}
 			}
 			}
 
 
@@ -48,12 +43,7 @@ view = {
 							marginTop: -1*($("#imageview #image").height()/2)
 							marginTop: -1*($("#imageview #image").height()/2)
 						});
 						});
 					} else {
 					} else {
-						$("#imageview #image").css({
-							top: 0,
-							right: 0,
-							bottom: 0,
-							left: 0
-						});
+						$("#imageview #image").addClass('full');
 					}
 					}
 				}, delay));
 				}, delay));
 			}
 			}

Some files were not shown because too many files changed in this diff