imageview.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. * @name imageview.css
  3. * @author Tobias Reich
  4. * @copyright 2014 by Tobias Reich
  5. */
  6. #imageview {
  7. position: fixed;
  8. display: none;
  9. width: 100%;
  10. min-height: 100%;
  11. background-color: rgba(10,10,10,.99);
  12. -webkit-transition: background-color .3s;
  13. }
  14. /* Modes ------------------------------------------------*/
  15. #imageview.view {
  16. background-color: inherit;
  17. }
  18. #imageview.full {
  19. background-color: #040404;
  20. }
  21. /* ImageView ------------------------------------------------*/
  22. #imageview #image {
  23. position: absolute;
  24. top: 60px;
  25. right: 30px;
  26. bottom: 30px;
  27. left: 30px;
  28. background-repeat: no-repeat;
  29. background-position: 50% 50%;
  30. background-size: contain;
  31. -webkit-transition: top .3s, right .3s, bottom .3s, left .3s, margin-top .3s;
  32. -moz-transition: top .3s, right .3s, bottom .3s, left .3s, margin-top .3s;
  33. transition: top .3s, right .3s, bottom .3s, left .3s, margin-top .3s;
  34. -webkit-animation-name: zoomIn;
  35. -webkit-animation-duration: .3s;
  36. -webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
  37. -moz-animation-name: zoomIn;
  38. -moz-animation-duration: .3s;
  39. -moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
  40. animation-name: zoomIn;
  41. animation-duration: .3s;
  42. animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
  43. }
  44. #imageview #image.small {
  45. top: 50%;
  46. right: auto;
  47. bottom: auto;
  48. left: 50%;
  49. }
  50. /* Previous/Next Buttons ------------------------------------------------*/
  51. #imageview .arrow_wrapper {
  52. position: fixed;
  53. width: 20%;
  54. height: calc(100% - 60px);
  55. top: 60px;
  56. z-index: 1;
  57. }
  58. #imageview .arrow_wrapper.previous {
  59. left: 0;
  60. }
  61. #imageview .arrow_wrapper.next {
  62. right: 0;
  63. }
  64. #imageview .arrow_wrapper a {
  65. position: fixed;
  66. top: 50%;
  67. margin-top: -10px;
  68. color: #fff;
  69. font-size: 50px;
  70. text-shadow: 0px 1px 2px #000;
  71. cursor: pointer;
  72. opacity: 0;
  73. z-index: 2;
  74. -webkit-transition: opacity .2s;
  75. -moz-transition: opacity .2s;
  76. transition: opacity .2s;
  77. }
  78. #imageview .arrow_wrapper:hover a {
  79. opacity: .2;
  80. }
  81. #imageview .arrow_wrapper a#previous {
  82. left: 20px;
  83. }
  84. #imageview .arrow_wrapper a#next {
  85. right: 20px;
  86. }