Browse Source

play/pause

windhamdavid 8 years ago
parent
commit
80e7e01109
5 changed files with 186 additions and 34 deletions
  1. 92 16
      app/css/style.min.css
  2. 1 1
      app/index.html
  3. BIN
      dump.rdb
  4. 92 16
      src/css/main.css
  5. 1 1
      src/index.html

+ 92 - 16
app/css/style.min.css

@@ -6838,7 +6838,7 @@ header .intro-text {
 
 
 .scrollable-list {
 .scrollable-list {
   overflow: scroll;
   overflow: scroll;
-  height: 192px;
+  height: 194px;
 }
 }
 
 
 .scrollable-list .list-group-item {
 .scrollable-list .list-group-item {
@@ -6914,37 +6914,109 @@ meter {
   -o-transform: rotate(-90deg);
   -o-transform: rotate(-90deg);
   transform: rotate(-90deg);
   transform: rotate(-90deg);
 }
 }
+
+
+/* Ripple Out */
+@-webkit-keyframes hvr-ripple-out {
+  100% {
+    top: -12px;
+    right: -12px;
+    bottom: -12px;
+    left: -12px;
+    opacity: 0;
+  }
+}
+
+@keyframes hvr-ripple-out {
+  100% {
+    top: -12px;
+    right: -12px;
+    bottom: -12px;
+    left: -12px;
+    opacity: 0;
+  }
+}
+
+.hvr-ripple-out {
+  display: inline-block;
+  vertical-align: middle;
+  -webkit-transform: translateZ(0);
+  transform: translateZ(0);
+  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
+  -webkit-backface-visibility: hidden;
+  backface-visibility: hidden;
+  -moz-osx-font-smoothing: grayscale;
+  position: relative;
+}
+.hvr-ripple-out:before {
+  content: '';
+  position: absolute;
+  border: #e1e1e1 solid 6px;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  -webkit-animation-duration: 1s;
+  animation-duration: 1s;
+}
+.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
+  -webkit-animation-name: hvr-ripple-out;
+  animation-name: hvr-ripple-out;
+}
 #amplitude-play-pause{
 #amplitude-play-pause{
-	width: 30px;
-	height: 34px;
-	margin: -40px 5px 0 0;
-	cursor: pointer;
-	float: right;
-  background-color:red;
+  display: block;
+  height: 55px;
+  width: 55px;
+  line-height: 60px;
+  -moz-border-radius: 30px; /* or 50% */
+  border-radius: 30px; /* or 50% */
+  background-color: white;
+  color: black;
+  text-align: center;
+  border: 3px solid #cecece;
+  margin: -40px 0 0 0;
+  cursor: pointer;
+  float: right;
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-transition: -webkit-transform .8s ease-in-out;
+  transition: transform .8s ease-in-out;
 }
 }
+#amplitude-play-pause:hover{
+  background-color: black;
+  color: white;
+  -webkit-transform: rotate(360deg);
+  transform: rotate(360deg);
+}
+
 #amplitude-current-time{
 #amplitude-current-time{
 	font-family: 'PT Sans', sans-serif;
 	font-family: 'PT Sans', sans-serif;
 	font-size: 14px;
 	font-size: 14px;
 	font-weight: 400;
 	font-weight: 400;
 }
 }
-.amplitude-paused:before;{
-  content:"\20ac";
+.amplitude-paused:before{
+  content:"\e072";
   font-family:"Glyphicons Halflings";
   font-family:"Glyphicons Halflings";
+  font-size:35px;
   line-height:1;
   line-height:1;
   margin:10px;
   margin:10px;
   display:inline-block;
   display:inline-block;
 }
 }
+.amplitude-paused{  
 
 
-.amplitude-paused{
-  content:"\20ac";
+}
+.amplitude-playing:before {
+  content:"\e073";
   font-family:"Glyphicons Halflings";
   font-family:"Glyphicons Halflings";
-	background-image: url('../img/small-gray-play.png');
-	background-repeat: no-repeat;
+  font-size:35px;
+  line-height:1;
+  margin:10px;
+  display:inline-block;
 }
 }
 .amplitude-playing{
 .amplitude-playing{
-	background-image: url('../img/small-gray-pause.png');
-	background-repeat: no-repeat;
+
 }
 }
+
+
 #amplitude-now-playing-name{
 #amplitude-now-playing-name{
 
 
 }
 }
@@ -6953,4 +7025,8 @@ meter {
 }
 }
 #amplitude-now-playing-bitrate{
 #amplitude-now-playing-bitrate{
 
 
-}
+}
+
+
+
+

+ 1 - 1
app/index.html

@@ -79,7 +79,7 @@
                   <div id="controls">
                   <div id="controls">
                      <div id="amplitude-play-pause" class="amplitude-paused"></div><br>
                      <div id="amplitude-play-pause" class="amplitude-paused"></div><br>
                      <span id="amplitude-current-time">0:00</span>
                      <span id="amplitude-current-time">0:00</span>
-                     <meter name="volume" value="9" min="0" max="10" low="0" high="10"></meter>
+                     <!--<meter name="volume" value="9" min="0" max="10" low="0" high="10"></meter>-->
                   </div>
                   </div>
                   <span class="glyphicon glyphicon-volume-off" aria-hidden="true" style="float:left;margin: -4px 0 0 0;font-size:20px"></span>
                   <span class="glyphicon glyphicon-volume-off" aria-hidden="true" style="float:left;margin: -4px 0 0 0;font-size:20px"></span>
                   <input type="range" class="bar" name="volume" id="amplitude-volume-slider" min=1 max=100 value=90/>
                   <input type="range" class="bar" name="volume" id="amplitude-volume-slider" min=1 max=100 value=90/>

BIN
dump.rdb


+ 92 - 16
src/css/main.css

@@ -77,7 +77,7 @@ header .intro-text {
 
 
 .scrollable-list {
 .scrollable-list {
   overflow: scroll;
   overflow: scroll;
-  height: 192px;
+  height: 194px;
 }
 }
 
 
 .scrollable-list .list-group-item {
 .scrollable-list .list-group-item {
@@ -153,37 +153,109 @@ meter {
   -o-transform: rotate(-90deg);
   -o-transform: rotate(-90deg);
   transform: rotate(-90deg);
   transform: rotate(-90deg);
 }
 }
+
+
+/* Ripple Out */
+@-webkit-keyframes hvr-ripple-out {
+  100% {
+    top: -12px;
+    right: -12px;
+    bottom: -12px;
+    left: -12px;
+    opacity: 0;
+  }
+}
+
+@keyframes hvr-ripple-out {
+  100% {
+    top: -12px;
+    right: -12px;
+    bottom: -12px;
+    left: -12px;
+    opacity: 0;
+  }
+}
+
+.hvr-ripple-out {
+  display: inline-block;
+  vertical-align: middle;
+  -webkit-transform: translateZ(0);
+  transform: translateZ(0);
+  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
+  -webkit-backface-visibility: hidden;
+  backface-visibility: hidden;
+  -moz-osx-font-smoothing: grayscale;
+  position: relative;
+}
+.hvr-ripple-out:before {
+  content: '';
+  position: absolute;
+  border: #e1e1e1 solid 6px;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  -webkit-animation-duration: 1s;
+  animation-duration: 1s;
+}
+.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
+  -webkit-animation-name: hvr-ripple-out;
+  animation-name: hvr-ripple-out;
+}
 #amplitude-play-pause{
 #amplitude-play-pause{
-	width: 30px;
-	height: 34px;
-	margin: -40px 5px 0 0;
-	cursor: pointer;
-	float: right;
-  background-color:red;
+  display: block;
+  height: 55px;
+  width: 55px;
+  line-height: 60px;
+  -moz-border-radius: 30px; /* or 50% */
+  border-radius: 30px; /* or 50% */
+  background-color: white;
+  color: black;
+  text-align: center;
+  border: 3px solid #cecece;
+  margin: -40px 0 0 0;
+  cursor: pointer;
+  float: right;
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-transition: -webkit-transform .8s ease-in-out;
+  transition: transform .8s ease-in-out;
+}
+#amplitude-play-pause:hover{
+  background-color: black;
+  color: white;
+  -webkit-transform: rotate(360deg);
+  transform: rotate(360deg);
 }
 }
+
 #amplitude-current-time{
 #amplitude-current-time{
 	font-family: 'PT Sans', sans-serif;
 	font-family: 'PT Sans', sans-serif;
 	font-size: 14px;
 	font-size: 14px;
 	font-weight: 400;
 	font-weight: 400;
 }
 }
-.amplitude-paused:before;{
-  content:"\20ac";
+.amplitude-paused:before{
+  content:"\e072";
   font-family:"Glyphicons Halflings";
   font-family:"Glyphicons Halflings";
+  font-size:35px;
   line-height:1;
   line-height:1;
   margin:10px;
   margin:10px;
   display:inline-block;
   display:inline-block;
 }
 }
+.amplitude-paused{  
 
 
-.amplitude-paused{
-  content:"\20ac";
+}
+.amplitude-playing:before {
+  content:"\e073";
   font-family:"Glyphicons Halflings";
   font-family:"Glyphicons Halflings";
-	background-image: url('../img/small-gray-play.png');
-	background-repeat: no-repeat;
+  font-size:35px;
+  line-height:1;
+  margin:10px;
+  display:inline-block;
 }
 }
 .amplitude-playing{
 .amplitude-playing{
-	background-image: url('../img/small-gray-pause.png');
-	background-repeat: no-repeat;
+
 }
 }
+
+
 #amplitude-now-playing-name{
 #amplitude-now-playing-name{
 
 
 }
 }
@@ -192,4 +264,8 @@ meter {
 }
 }
 #amplitude-now-playing-bitrate{
 #amplitude-now-playing-bitrate{
 
 
-}
+}
+
+
+
+

+ 1 - 1
src/index.html

@@ -79,7 +79,7 @@
                   <div id="controls">
                   <div id="controls">
                      <div id="amplitude-play-pause" class="amplitude-paused"></div><br>
                      <div id="amplitude-play-pause" class="amplitude-paused"></div><br>
                      <span id="amplitude-current-time">0:00</span>
                      <span id="amplitude-current-time">0:00</span>
-                     <meter name="volume" value="9" min="0" max="10" low="0" high="10"></meter>
+                     <!--<meter name="volume" value="9" min="0" max="10" low="0" high="10"></meter>-->
                   </div>
                   </div>
                   <span class="glyphicon glyphicon-volume-off" aria-hidden="true" style="float:left;margin: -4px 0 0 0;font-size:20px"></span>
                   <span class="glyphicon glyphicon-volume-off" aria-hidden="true" style="float:left;margin: -4px 0 0 0;font-size:20px"></span>
                   <input type="range" class="bar" name="volume" id="amplitude-volume-slider" min=1 max=100 value=90/>
                   <input type="range" class="bar" name="volume" id="amplitude-volume-slider" min=1 max=100 value=90/>