Css fade outs
This commit is contained in:
parent
0b6bad1a24
commit
f54f29a4b4
|
@ -63,6 +63,8 @@
|
||||||
}
|
}
|
||||||
.album .tracklist ul li {
|
.album .tracklist ul li {
|
||||||
display: block;
|
display: block;
|
||||||
|
height: 26px;
|
||||||
|
position: relative;
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
.add-track {
|
.add-track {
|
||||||
|
@ -83,17 +85,54 @@
|
||||||
border-top: none;
|
border-top: none;
|
||||||
}
|
}
|
||||||
.album .tracklist ul li .trackname {
|
.album .tracklist ul li .trackname {
|
||||||
float: left;
|
position: absolute;
|
||||||
|
left: 40px;
|
||||||
|
top: 6px;
|
||||||
|
width: 90%;
|
||||||
|
height: 16px;
|
||||||
|
overflow: hidden;
|
||||||
|
z-index: 10;
|
||||||
}
|
}
|
||||||
.album .tracklist ul li .index {
|
.album .tracklist ul li .index {
|
||||||
|
position: absolute;
|
||||||
|
left: 22px;
|
||||||
|
top: 9px;
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
|
||||||
width: 15px;
|
width: 15px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin: 3px 5px 0 0;
|
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
.album .tracklist ul li .length {
|
.album .tracklist ul li .length {
|
||||||
float: right;
|
position: absolute;
|
||||||
|
right: 0px;
|
||||||
|
top: 6px;
|
||||||
|
height: 16px;
|
||||||
|
z-index: 30;
|
||||||
|
}
|
||||||
|
.album .tracklist ul li .fade {
|
||||||
|
position: absolute;
|
||||||
|
right: 0px;
|
||||||
|
top: 6px;
|
||||||
|
width: 80px;
|
||||||
|
height: 16px;
|
||||||
|
z-index: 20;
|
||||||
|
}
|
||||||
|
.album .tracklist ul li .fade {
|
||||||
|
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%); /* FF3.6+ */
|
||||||
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* Opera11.10+ */
|
||||||
|
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* IE10+ */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
|
||||||
|
background: linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* W3C */
|
||||||
|
}
|
||||||
|
.album .tracklist ul li:hover .fade {
|
||||||
|
background: -moz-linear-gradient(left, rgba(250,250,250,0) 0%, rgba(250,250,250,1) 50%, rgba(250,250,250,1) 100%); /* FF3.6+ */
|
||||||
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(250,250,250,0)), color-stop(50%,rgba(250,250,250,1)), color-stop(100%,rgba(250,250,250,1))); /* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background: -o-linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* Opera11.10+ */
|
||||||
|
background: -ms-linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* IE10+ */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fafafa', endColorstr='#fafafa',GradientType=1 ); /* IE6-9 */
|
||||||
|
background: linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* W3C */
|
||||||
}
|
}
|
|
@ -1,8 +1,25 @@
|
||||||
#player .now-playing {
|
#player .now-playing {
|
||||||
|
position: relative;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
#player .now-playing .fade {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
right: 0px;
|
||||||
|
width: 80px;
|
||||||
|
height: 30px;
|
||||||
|
z-index: 10;
|
||||||
|
background: -moz-linear-gradient(left, rgba(34,34,34,0) 0%, rgba(34,34,34,1) 50%, rgba(34,34,34,1) 100%); /* FF3.6+ */
|
||||||
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(34,34,34,0)), color-stop(50%,rgba(34,34,34,1)), color-stop(100%,rgba(34,34,34,1))); /* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(left, rgba(34,34,34,0) 0%,rgba(34,34,34,1) 50%,rgba(34,34,34,1) 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background: -o-linear-gradient(left, rgba(34,34,34,0) 0%,rgba(34,34,34,1) 50%,rgba(34,34,34,1) 100%); /* Opera11.10+ */
|
||||||
|
background: -ms-linear-gradient(left, rgba(34,34,34,0) 0%,rgba(34,34,34,1) 50%,rgba(34,34,34,1) 100%); /* IE10+ */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00222222', endColorstr='#222222',GradientType=1 ); /* IE6-9 */
|
||||||
|
background: linear-gradient(left, rgba(34,34,34,0) 0%,rgba(34,34,34,1) 50%,rgba(34,34,34,1) 100%); /* W3C */
|
||||||
}
|
}
|
||||||
#player .progress {
|
#player .progress {
|
||||||
width: 330px;
|
width: 330px;
|
||||||
|
|
|
@ -38,6 +38,7 @@ var Pages = {
|
||||||
<li>\
|
<li>\
|
||||||
<div class="add-track button gray">+</div>\
|
<div class="add-track button gray">+</div>\
|
||||||
<div class="track-container">\
|
<div class="track-container">\
|
||||||
|
<div class="fade"></div>\
|
||||||
<span class="index">'+ (i+1) +'</span>\
|
<span class="index">'+ (i+1) +'</span>\
|
||||||
<div class="trackname">'+ track.name +'</div>\
|
<div class="trackname">'+ track.name +'</div>\
|
||||||
<div class="length">'+ track.duration +'</div>\
|
<div class="length">'+ track.duration +'</div>\
|
||||||
|
|
|
@ -70,7 +70,7 @@ var Player = {
|
||||||
var $obj = $('#i'+ id);
|
var $obj = $('#i'+ id);
|
||||||
var query = $obj.attr('data-artist') +' — '+ $obj.attr('data-track');
|
var query = $obj.attr('data-artist') +' — '+ $obj.attr('data-track');
|
||||||
|
|
||||||
$('#player .now-playing').html(query);
|
$('#player .now-playing').html(query +'<div class="fade"></div>');
|
||||||
$('.playlist-tracks li').removeClass('now');
|
$('.playlist-tracks li').removeClass('now');
|
||||||
$obj.addClass('now');
|
$obj.addClass('now');
|
||||||
$('#player .loaded, #player .played').width(0);
|
$('#player .loaded, #player .played').width(0);
|
||||||
|
|
Loading…
Reference in New Issue