forked from fayazara/zooper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suppression du fichier d'aperçu public/preview.jpg
- Loading branch information
Showing
10 changed files
with
310 additions
and
392 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,50 @@ | ||
|
||
.my-animation-shake { | ||
animation: shake 0.5s; | ||
} | ||
|
||
@keyframes shake { | ||
0% { | ||
transform: translate(1px, 1px) rotate(0deg); | ||
} | ||
|
||
10% { | ||
transform: translate(-1px, -2px) rotate(-1deg); | ||
} | ||
|
||
20% { | ||
transform: translate(-3px, 0px) rotate(1deg); | ||
} | ||
|
||
30% { | ||
transform: translate(3px, 2px) rotate(0deg); | ||
} | ||
|
||
40% { | ||
transform: translate(1px, -1px) rotate(1deg); | ||
} | ||
|
||
50% { | ||
transform: translate(-1px, 2px) rotate(-1deg); | ||
} | ||
|
||
60% { | ||
transform: translate(-3px, 1px) rotate(0deg); | ||
} | ||
|
||
70% { | ||
transform: translate(3px, 1px) rotate(-1deg); | ||
} | ||
|
||
80% { | ||
transform: translate(-1px, -1px) rotate(1deg); | ||
} | ||
|
||
90% { | ||
transform: translate(1px, 2px) rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: translate(1px, -2px) rotate(-1deg); | ||
} | ||
} |
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
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,40 @@ | ||
--- | ||
name : "beatles" | ||
title : "Quizz - Beatles" | ||
description : "Remettez les images de chaque Album au dessus du bon titre de chanson ! " | ||
nbPics : 7 | ||
answerLabel : "trackListLabel" | ||
--- | ||
|
||
|
||
```sparql | ||
# Albums et titres associés | ||
SELECT ?trackListLabel ?trackList | ||
(SAMPLE(?albumLabel) AS ?albumLabels) | ||
(SAMPLE(?img) AS ?image) (SAMPLE(?musicBrainz) AS ?musicBrainzFirst) | ||
(MD5(CONCAT(STR(?trackList), STR(RAND()))) AS ?random) | ||
WHERE { | ||
?album wdt:P31 wd:Q482994; | ||
wdt:P1476 ?titre; | ||
wdt:P175 ?musicien; | ||
wdt:P658 ?trackList. | ||
wd:P436 wdt:P1630 ?formatterurl. | ||
?album wdt:P436 ?musicBrainz. | ||
BIND(IRI(REPLACE(?musicBrainz, "^(.+)$", ?formatterurl)) AS ?musicBrainzUrl) | ||
BIND(CONCAT("http://coverartarchive.org/release-group/", ?musicBrainz, "") AS ?p) | ||
BIND(CONCAT(?p, "/front", "") AS ?img) | ||
FILTER(?musicien IN(wd:Q1299)) | ||
FILTER(?album IN(wd:Q199585, wd:Q173643, wd:Q60676411, wd:Q185121, wd:Q169226)) | ||
?article schema:about ?album; | ||
schema:inLanguage "fr"; | ||
schema:isPartOf <https://fr.wikipedia.org/>. | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | ||
SERVICE wikibase:label { | ||
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". | ||
?trackList rdfs:label ?trackListLabel. | ||
?album rdfs:label ?albumLabel. | ||
} | ||
} | ||
GROUP BY ?trackListLabel ?random ?trackList | ||
ORDER BY (?random) | ||
``` |
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,26 @@ | ||
--- | ||
name : "drapeaux" | ||
title : "Quizz - Drapeaux" | ||
quizzTemplate : "choice" | ||
description : "" | ||
nbPics : 12 | ||
answerLabel : "countryLabel" | ||
imageLabel : "flag" | ||
--- | ||
|
||
|
||
```sparql | ||
select ?flag ?countryLabel ?image | ||
(MD5(CONCAT(str(?flag),str(RAND()))) as ?random) | ||
where{ | ||
?country wdt:P31 wd:Q3624078; | ||
wdt:P41 ?flag | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" . } | ||
} | ||
order by ?random | ||
``` |
Oops, something went wrong.