CONNEXION
  • RetourJeux
    • Sorties
    • Hit Parade
    • Les + populaires
    • Les + attendus
    • Soluces
    • Tous les Jeux
    • Gaming
  • RetourActu Gaming
    • News
    • Astuces
    • Tests
    • Previews
    • Toute l'actu gaming
  • RetourBons plans
    • Bons plans
    • Bons plans Smartphone
    • Bons plans Hardware
    • Bons plans Image et Son
    • Bons plans Amazon
    • Bons plans Cdiscount
    • Bons plans Decathlon
    • Bons plans Fnac
    • Tous les Bons plans
  • RetourJVTech
    • Actus High-Tech
    • Intelligence Artificielle
    • Smartphones
    • Mobilité urbaine
    • Hardware
    • Image et son
    • Tutoriels
    • Tests produits High-Tech
    • Guides d'achat High-Tech
    • JVTech
  • RetourCulture
    • Actus Culture
    • Culture
  • RetourVidéos
    • A la une
    • Gaming Live
    • Vidéos Tests
    • Vidéos Previews
    • Gameplay
    • Trailers
    • Chroniques
    • Replay Web TV
    • Toutes les vidéos
  • RetourForums
    • Hardware PC
    • PS5
    • Switch 2
    • Xbox Series
    • Switch
    • Pokemon pocket
    • FC 25 Ultimate Team
    • League of Legends
    • Tous les Forums
  • PC
  • PS5
  • Xbox Series
  • Switch 2
  • PS4
  • One
  • Switch
  • iOS
  • Android
  • MMO
  • RPG
  • FPS
En ce moment Genshin Impact Valhalla Breath of the wild Animal Crossing GTA 5 Red dead 2
Liste des sujets

[Jeu] Hapclicker

Guklam
Guklam
Niveau 10
13 mars 2015 à 22:24:03

attend :noel:

jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:24:09

gulkam ton css est mort, envoie moi le fichier je l'upload sur mon serveur :hap:

Pseudo supprimé
Pseudo supprimé 13 mars 2015 à 22:24:34

hap=500000000;
hapower=50000000; :rire:

Ghostwald
Ghostwald
Niveau 9
13 mars 2015 à 22:24:58

Hey jeanownage ta viré mon hap avec le pointeur ? :( ?

jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:26:43

Le 13 mars 2015 à 22:24:58 Ghostwald a écrit :
Hey jeanownage ta viré mon hap avec le pointeur ? :( ?

il colle pas avec le nouveau css, refait le en transparent :hap:

Pseudo supprimé
Pseudo supprimé 13 mars 2015 à 22:26:43

http://daneden.github.io/animate.css/
http://fortawesome.github.io/Font-Awesome/
http://getbootstrap.com/

Et avec ça tu fais un site classe et beau.
Après les truc normaux :noel:

http://jquery.com/
http://jquery.com/download/
https://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js&

jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:27:41

Le 13 mars 2015 à 22:26:43 Votirono a écrit :
http://daneden.github.io/animate.css/
http://fortawesome.github.io/Font-Awesome/
http://getbootstrap.com/

Et avec ça tu fais un site classe et beau.
Après les truc normaux :noel:

http://jquery.com/
http://jquery.com/download/
https://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js&

merci je regarde :noel:

-Pichukulele
-Pichukulele
Niveau 14
13 mars 2015 à 22:29:17

Epic :hap:

Pseudo supprimé
Pseudo supprimé 13 mars 2015 à 22:30:26

Après si tu veux allé vite tu prend un bon IDE ( pas Notepad++ :noel:)
Netbean gratuit et puissant (moins que PHPStorm qui est payant :noel:)
Avec plus Emmet (Zen Coding).

Guklam
Guklam
Niveau 10
13 mars 2015 à 22:30:31
span#un {
	position: absolute;
	display: none;
	left: 49%;
	bottom: 70%;
	font-size: 50px;
	color: rgba(255,255,255,0.6);
}
img:active + span#un {
	content: "+1";
	position: absolute;
	transition:2s;
	display: block;
	bottom: 80%;
	font-size: 50px;
	color: rgba(255,255,255,0.6);
	-webkit-animation: bounce 0.14s infinite;
    animation: bounce 0.14s infinite;
}
@keyframes bounce {
   	0%   {bottom: 70%;}
    100% {bottom: 80%;}
}
Guklam
Guklam
Niveau 10
13 mars 2015 à 22:31:11
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);

body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: 'Open sans', Verdana, Arial, Helvetica, sans-serif;
}
a {
	text-decoration: none;
	color: inherit;
}
table {
    border-collapse: collapse;
    font-size: small;
}
td {
    width: 99%;
    border: 1px solid silver;
    border-left: none;
    background-color: whitesmoke;
    text-align: center;
}
td img {
	cursor: pointer;
}
td[style*="10%"] span {
	font-size: 16px;
	color: rgba(0,0,0,0.8)
}
button {
	margin-bottom: 6px;
}
h1 {
	font-weight: 300;
	text-align: center;
}
.code {
    font-size: small;
    background-color: #F5F5F5;
    color: #717171;
    border: 1px solid #3C3C3C;
    border-radius: 2px;
    padding: 5px;
}
#alert {
	display: none;
	transition: 1s;
	background:white;
	border: 2px solid silver;
	color: rgba(0,0,0,0.8);
	padding: 10px;
	width: 175px;
	margin: 0 auto;
	margin-top: 50px;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
span#un {
	position: absolute;
	display: none;
	left: 49%;
	bottom: 70%;
	font-size: 50px;
	color: rgba(255,255,255,0.6);
}
img:active + span#un {
	content: "+1";
	position: absolute;
	transition:2s;
	display: block;
	bottom: 80%;
	font-size: 50px;
	color: rgba(255,255,255,0.6);
	-webkit-animation: bounce 0.14s infinite;
    animation: bounce 0.14s infinite;
}
@keyframes bounce {
   	0%   {bottom: 70%;}
    100% {bottom: 80%;}
}
.block.left {
	text-align: center;
	left: 0px;
	background: url(http://images.forwallpaper.com/files/thumbs/preview/29/296982__gradient-light-dark-background_p.jpg) no-repeat;
	background-size: cover;
}
.block.center {
	left: 33%;
	margin-left: 2px;
	overflow: auto;
}
.block.right {
	top: 10px;
	right: 0.5%;
	width: 32%;
}
.block.left, .block.center {
	border-right: 2px solid rgba(0,0,0,0.4);
}
.block.left, .block.center, .block.right {
	position: absolute;
	top: 0px;
	width: 33%;
	bottom: 0px;
	min-width: 100px;
}
.block.left img {
	margin-top: 250px;
}
.block.left span#click, .block.left span#hap_seconde {
	margin-right: 4px;
}
.block.left span.entoure, .block.left span#hap_seconde {
	display: block;
	font-size: 24px;
	height: 50px;
	line-height: 50px;
	color: silver;
	width: 100%;
	background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.4);
}
.block.left span#hap_seconde {
	margin-top: 10px;
	border-top: 1px solid rgba(0,0,0,0.3);
}
#hap_button {
	height: 350px;
	width: 350px;
}
#hap_button:hover {
	transition: 0.4s;
	opacity: 0.75;
}
#hap_button:active {
	height: 320px;
	width: 320px;
}
#hap_seconde::after {
	content: "hap/seconde";
	margin-left: 4px;
}
jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:31:27

Le 13 mars 2015 à 22:30:31 Guklam a écrit :
span#un { position: absolute; display: none; left: 49%; bottom: 70%; font-size: 50px; color: rgba(255,255,255,0.6); } img:active + span#un { content: "+1"; position: absolute; transition:2s; display: block; bottom: 80%; font-size: 50px; color: rgba(255,255,255,0.6); -webkit-animation: bounce 0.14s infinite; animation: bounce 0.14s infinite; } @keyframes bounce { 0% {bottom: 70%;} 100% {bottom: 80%;} }

toujours pas :hap:

sinon donne moi ton css les boutton sont tout moche :hap:

Guklam
Guklam
Niveau 10
13 mars 2015 à 22:35:33
@charset "UTF-8";

/*********************************************************************************************************
    Entèrement crée à la main par Guklam. @Guklam, http://www.jeuxvideo.com/profil/guklam?mode=page_perso
    Vous avez le droit de modifier les boutons mais ne pas les mettre en ligne sans mon accord.
*********************************************************************************************************/

@import url(http://fonts.googleapis.com/css?family=Opensans:400,900,700,500,300,100);

/*********************
       Commun
*********************/
button[class^="btn"] {
	display: inline-block;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 500;
	font-family: 'Open sans', sans-serif;
	transition:0.14s;
}
.btn {
	padding:7px 13px;
	background: white;
	border-width: 2px;
	border-style: solid;
}
.btno {
	border-width: 3px;
	border-style: solid;
	border-color: transparent;
	color:white;
}
/*********************
  	   Couleur
*********************/
.btn-default {
	border-color: #7f8c8d;
	color: #7f8c8d;
}
.btn-primary {
	border-color: #2980b9;
	color: #2980b9;
}
.btn-info {
	border-color: #2ab966;
	color: #2ab966;
}
.btn-warning {
	border-color: #e67e22;
	color: #e67e22;
}
.btn-danger {
	border-color: #c0392b;
	color: #c0392b;
}
/*********************
  Couleur au passage
  de la souris
*********************/
.btn:hover {
	color:white;
}
.btn-default:hover {
	background: #7f8c8d;
}
.btn-primary:hover {
	background: #2980b9;
}
.btn-info:hover {
	background: #2ab966;
}
.btn-warning:hover {
	background: #e67e22;
}
.btn-danger:hover {
	background: #c0392b;
}
/*********************
  	   Inversé
*********************/
.btno-default {
	background: #7f8c8d;
}
.btno-primary {
	background: #2980b9;
}
.btno-info {
	background: #2ab966;
}
.btno-warning {
	background: #e67e22;
}
.btno-danger {
	background: #c0392b;
}
/**********************
  Couleur au passage
  de la souris sur 
  les boutons inversés
**********************/
.btno:hover {
	background: white;
	font-weight
}
.btno-default:hover {
	border-color: #7f8c8d;
	color: #7f8c8d;
}
.btno-primary:hover {
	border-color: #2980b9;
	color: #2980b9;
}
.btno-info:hover {
	border-color: #2ab966;
	color: #2ab966;
}
.btno-warning:hover {
	border-color: #e67e22;
	color: #e67e22;
}
.btno-danger:hover {
	border-color: #c0392b;
	color: #c0392b;
}
/*********************
  	   Taille
*********************/
.btn-df {
	padding:7px 13px;
}
.btn-small {
	padding: 4px 8px;
}
.btn-vsmall {
	padding: 2px 4px;
	font-size: 13px;
}
.btn-large {
	padding: 12px 18px;
	font-size: 16px;
}
.btn-vlarge {
	padding: 18px 24px;
	font-size: 20px;
}
.btn-block {
	height: 55px;
	display:block;
	width: 100%;
	font-size: 18px;
}

:hap:

Guklam
Guklam
Niveau 10
13 mars 2015 à 22:36:20

http://prntscr.com/6gepdq

t'as bien mis ça?

BloodConnection
BloodConnection
Niveau 7
13 mars 2015 à 22:36:56

C'est possible d'acheter le dernier item ? :hap:

Supersorcier
Supersorcier
Niveau 10
13 mars 2015 à 22:37:40

Le 13 mars 2015 à 22:36:56 Bloodconnection a écrit :
C'est possible d'acheter le dernier item ? :hap:

Non pas encore:hap:

jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:38:41

Le 13 mars 2015 à 22:36:20 Guklam a écrit :
http://prntscr.com/6gepdq

t'as bien mis ça?

oui :ok:

jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:39:16

AH c'est bon ptin ça marche !! :bave:

Ghostwald
Ghostwald
Niveau 9
13 mars 2015 à 22:40:00

https://image.noelshack.com/fichiers/2015/11/1426282787-image-principal-du-hap.gif

tiens Jena Ownage voila le hap sans fond

jeanownage
jeanownage
Niveau 7
13 mars 2015 à 22:40:54

Le 13 mars 2015 à 22:40:00 Ghostwald a écrit :
https://image.noelshack.com/fichiers/2015/11/1426282787-image-principal-du-hap.gif

tiens Jena Ownage voila le hap sans fond

sans l'ombre grise aussi ça serais cool :hap:
et le hap pas en jpg :svp:

Sous forums
  • Le Grand Voyage
  • La Corée du Toast ( Salut Yuengling )
La vidéo du moment