-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2d9f775
Showing
34 changed files
with
22,266 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 Listen 1 | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Listen 1 (Chrome Extension) (五一先行版) | ||
========== | ||
|
||
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE) | ||
|
||
缘起 | ||
---- | ||
当我发现找个想听的歌因为版权听不了,需要打开好几个网站开始搜索,来回切换让我抓狂的时候,我知道是时候该做点什么了。 | ||
|
||
妈妈再也不用担心我找不到我想听的歌了。这里包含了网易云音乐,虾米,QQ音乐的曲库,够全够大了吧。 | ||
|
||
搜歌,听歌,就用 `Listen1`。 | ||
|
||
[![imgur](http://i.imgur.com/yblr3KO.gif)]() | ||
|
||
还有精选歌单哦。 | ||
|
||
安装 | ||
---- | ||
不能直接用chrome打开安装,不能直接用chrome打开安装,不能直接用chrome打开安装。重要的话说三遍。 | ||
|
||
chrome右上角的设置按钮下找到更多工具,打开扩展程序 | ||
|
||
把crx文件拖到扩展程序页面里,完成! | ||
|
||
|
||
TODO | ||
---- | ||
加入我的歌单功能(如迫不及待需要,可以安装Listen 1非插件版) | ||
|
||
|
||
License | ||
-------- | ||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/** | ||
* angular-ui-notification - Angular.js service providing simple notifications using Bootstrap 3 styles with css transitions for animating | ||
* @author Alex_Crack | ||
* @version v0.1.0 | ||
* @link https://github.com/alexcrack/angular-ui-notification | ||
* @license MIT | ||
*/ | ||
.ui-notification | ||
{ | ||
position: fixed; | ||
z-index: 9999; | ||
|
||
width: 300px; | ||
|
||
cursor: pointer; | ||
-webkit-transition: all ease .5s; | ||
-o-transition: all ease .5s; | ||
transition: all ease .5s; | ||
|
||
color: #fff; | ||
border-radius: 0; | ||
background: #337ab7; | ||
box-shadow: 5px 5px 10px rgba(0, 0, 0, .3); | ||
} | ||
.ui-notification.killed | ||
{ | ||
-webkit-transition: opacity ease 1s; | ||
-o-transition: opacity ease 1s; | ||
transition: opacity ease 1s; | ||
|
||
opacity: 0; | ||
} | ||
.ui-notification > h3 | ||
{ | ||
font-size: 14px; | ||
font-weight: bold; | ||
|
||
display: block; | ||
|
||
margin: 10px 10px 0 10px; | ||
padding: 0 0 5px 0; | ||
|
||
text-align: left; | ||
|
||
border-bottom: 1px solid rgba(255, 255, 255, .3); | ||
} | ||
.ui-notification a | ||
{ | ||
color: #fff; | ||
} | ||
.ui-notification a:hover | ||
{ | ||
text-decoration: underline; | ||
} | ||
.ui-notification > .message | ||
{ | ||
margin: 10px 10px 10px 10px; | ||
} | ||
.ui-notification.warning | ||
{ | ||
color: #fff; | ||
background: #f0ad4e; | ||
} | ||
.ui-notification.error | ||
{ | ||
color: #fff; | ||
background: #d9534f; | ||
} | ||
.ui-notification.success | ||
{ | ||
color: #fff; | ||
background: #5cb85c; | ||
} | ||
.ui-notification.info | ||
{ | ||
color: #fff; | ||
background: #5bc0de; | ||
} | ||
.ui-notification:hover | ||
{ | ||
opacity: .7; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
/* | ||
* Globals | ||
*/ | ||
|
||
/* Links */ | ||
a, | ||
a:focus, | ||
a:hover { | ||
color: #fff; | ||
} | ||
|
||
/* Custom default button */ | ||
.btn-default, | ||
.btn-default:hover, | ||
.btn-default:focus { | ||
color: #333; | ||
text-shadow: none; /* Prevent inheritence from `body` */ | ||
background-color: #fff; | ||
border: 1px solid #fff; | ||
} | ||
|
||
|
||
/* | ||
* Base structure | ||
*/ | ||
|
||
html, | ||
body { | ||
height: 100%; | ||
background-color: #333; | ||
} | ||
body { | ||
color: #fff; | ||
/* text-align: center;*/ | ||
/*text-shadow: 0 1px 3px rgba(0,0,0,.5);*/ | ||
} | ||
|
||
/* Extra markup and styles for table-esque vertical and horizontal centering */ | ||
.site-wrapper { | ||
display: table; | ||
width: 100%; | ||
height: 100%; /* For at least Firefox */ | ||
min-height: 100%; | ||
/* -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5); | ||
box-shadow: inset 0 0 100px rgba(0,0,0,.5);*/ | ||
} | ||
.site-wrapper-inner { | ||
display: table-cell; | ||
vertical-align: top; | ||
} | ||
.cover-container { | ||
margin-right: auto; | ||
margin-left: auto; | ||
} | ||
|
||
/* Padding for spacing */ | ||
.inner { | ||
padding: 30px; | ||
} | ||
|
||
|
||
/* | ||
* Header | ||
*/ | ||
.masthead-brand { | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.masthead-nav > li { | ||
display: inline-block; | ||
} | ||
.masthead-nav > li + li { | ||
margin-left: 20px; | ||
} | ||
.masthead-nav > li > a { | ||
padding-right: 0; | ||
padding-left: 0; | ||
font-size: 16px; | ||
font-weight: bold; | ||
color: #fff; /* IE8 proofing */ | ||
color: rgba(255,255,255,.75); | ||
border-bottom: 2px solid transparent; | ||
} | ||
.masthead-nav > li > a:hover, | ||
.masthead-nav > li > a:focus { | ||
background-color: transparent; | ||
border-bottom-color: #a9a9a9; | ||
border-bottom-color: rgba(255,255,255,.25); | ||
} | ||
.masthead-nav > .active > a, | ||
.masthead-nav > .active > a:hover, | ||
.masthead-nav > .active > a:focus { | ||
color: #fff; | ||
border-bottom-color: #fff; | ||
} | ||
|
||
@media (min-width: 768px) { | ||
.masthead-brand { | ||
float: left; | ||
} | ||
.masthead-nav { | ||
float: right; | ||
} | ||
} | ||
|
||
|
||
/* | ||
* Cover | ||
*/ | ||
|
||
.cover { | ||
padding: 0 20px; | ||
} | ||
.cover .btn-lg { | ||
padding: 10px 20px; | ||
font-weight: bold; | ||
} | ||
|
||
|
||
/* | ||
* Footer | ||
*/ | ||
|
||
.mastfoot { | ||
color: #999; /* IE8 proofing */ | ||
color: rgba(255,255,255,.5); | ||
} | ||
|
||
|
||
/* | ||
* Affix and center | ||
*/ | ||
|
||
@media (min-width: 768px) { | ||
/* Pull out the header and footer */ | ||
.masthead { | ||
position: fixed; | ||
top: 0; | ||
} | ||
.mastfoot { | ||
position: fixed; | ||
bottom: 0; | ||
} | ||
/* Start the vertical centering */ | ||
.site-wrapper-inner { | ||
vertical-align: middle; | ||
} | ||
/* Handle the widths */ | ||
.masthead, | ||
.mastfoot, | ||
.cover-container { | ||
width: 100%; /* Must be percentage or pixels for horizontal alignment */ | ||
} | ||
} | ||
|
||
@media (min-width: 992px) { | ||
.masthead, | ||
.mastfoot, | ||
.cover-container { | ||
width: 880px; | ||
} | ||
} |
Oops, something went wrong.