1
0
mirror of https://github.com/2ec0b4/kaamelott-soundboard.git synced 2025-12-08 15:43:24 +00:00

Partage de sons (#4)

* Permet la lecture d'un son passé en paramètre d'URL

* Remplace du code créé par l'utilisation d'un template

* Ajoute un bouton de partage

* Ajoute une région pour gérer une modal

* Affiche une modal de partage

* Améliore le style du flash de sélection de son

* Corrige un mauvais appel de fonction

* Supprime la destruction de la vue au scroll de la fenêtre : le comportement n'est pas idéal sur iOS quand il y a le focus sur l'input

* Ne joue pas automatiquement le son partagé sur iOS
(après avoir tenté : https://paulbakaus.com/tutorials/html5/web-audio-on-ios/ )

* Permet d'éviter le zoom au focus sur l'input

* Ajoute, dans le style, des préfixes manquants
This commit is contained in:
Antoine
2016-06-23 21:55:40 +02:00
committed by GitHub
parent 1c764e1d12
commit f7982f2309
13 changed files with 330 additions and 25 deletions

View File

@@ -176,6 +176,88 @@ footer .likely {
* ANIMATIONS
* -----------------------------------------------------------------------------
*/
@-webkit-keyframes flash {
0% {
background-color: none;
border-color: none;
}
50% {
background-color: #fbf8b2;
border-color: #fbf8b2;
}
100% {
background-color: none;
border-color: none;
}
}
@-moz-keyframes flash {
0% {
background-color: none;
border-color: none;
}
50% {
background-color: #fbf8b2;
border-color: #fbf8b2;
}
100% {
background-color: none;
border-color: none;
}
}
@-ms-keyframes flash {
0% {
background-color: none;
border-color: none;
}
50% {
background-color: #fbf8b2;
border-color: #fbf8b2;
}
100% {
background-color: none;
border-color: none;
}
}
@-o-keyframes flash {
0% {
background-color: none;
border-color: none;
}
50% {
background-color: #fbf8b2;
border-color: #fbf8b2;
}
100% {
background-color: none;
border-color: none;
}
}
@keyframes flash {
0% {
background-color: none;
border-color: none;
}
50% {
background-color: #fbf8b2;
border-color: #fbf8b2;
}
100% {
background-color: none;
border-color: none;
}
}
.flash {
-moz-animation: flash 1s ease-out;
-moz-animation-iteration-count: 1;
-webkit-animation: flash 1s ease-out;
-webkit-animation-iteration-count: 1;
-ms-animation: flash 1s ease-out;
-ms-animation-iteration-count: 1;
-o-animation: flash 1s ease-out;
-o-animation-iteration-count: 1;
animation: flash 1s ease-out;
animation-iteration-count: 1;
}
@-webkit-keyframes uil-ring-anim {
0% {
-ms-transform: rotate(0deg);
@@ -412,6 +494,7 @@ input[type="text"] {
font-size: 14px;
height: 34px;
line-height: 1.42857;
outline: none;
padding: 6px 12px;
}
.btn, .btn:hover, .btn:focus,
@@ -455,6 +538,24 @@ a.btn-play:before {
a.btn-play.playing:before {
background: url('../img/stop.svg') no-repeat center center;
}
.btn-share, .btn-share:hover, .btn-share:focus,
a.btn-share, a.btn-share:hover, a.btn-share:focus {
background: #18AE90;
border-bottom: 3px solid #017F66;
padding: 5px;
position: absolute;
top: 0;
}
a.btn-share:before {
content: "";
background: url('../img/share.svg') no-repeat center center;
font-size: 1em;
height: 43px;
left: 12px;
position: absolute;
top: 7px;
width: 43px;
}
.btn:active,
a.btn:active {
top:3px;
@@ -495,6 +596,18 @@ noscript p {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
#modal-back {
background: #333333;
bottom: 0;
height: 100%;
left: 0;
opacity: 0.5;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 10000;
}
#filter {
text-align: center;
}
@@ -524,10 +637,37 @@ noscript p {
position: relative;
}
#list ul li a {
height: 43px;
width: 43px;
}
#list ul li > a {
right: 0;
}
#list ul li div {
margin-right: 45px;
}
#list ul li div a {
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
}
.share-link {
background-color: #FFFFFF;
border: 1px solid #999;
box-shadow: 0 0 8px rgba(0,0,0,0.2);
color: #333;
margin: 0 auto;
padding: 10px;
position: absolute;
text-align: center;
z-index: 10001;
}
.share-link input[type="text"] {
width: 100%;
}
.share-link .likely {
margin-top: 5px;
}
/**
* MEDIA QUERIES
* -----------------------------------------------------------------------------
@@ -538,6 +678,9 @@ noscript p {
margin-left: 1%;
margin-right: 1%;
}
.share-link {
width : 400px;
}
}
@media only screen and (min-width:1024px){
#list ul li {
@@ -574,6 +717,9 @@ noscript p {
margin-left: 2%;
margin-right: 2%;
}
.share-link {
width : 90%;
}
}
@media only screen and (max-width:430px){
header h1 {