Allmystery
Menschen Wissenschaft Politik Mystery Kriminalfälle Spiritualität Verschwörungen Technologie Ufologie Natur Umfragen Unterhaltung
weitere Rubriken
PhilosophieTräumeOrteEsoterikLiteraturAstronomieHelpdeskGruppenGamingFilmeMusikClashVerbesserungenAllmysteryEnglish
Diskussions-Übersichten
BesuchtTeilgenommenAlleNeueGeschlossenLesenswertSchlüsselwörter
Schiebe oft benutzte Tabs in die Navigationsleiste (zurücksetzen).

Do it yourself: CSS für Profil und Blog

6.812 Beiträge ▪ Schlüsselwörter: Allmystery, Hilfe, Welt ▪ Abonnieren: Feed E-Mail

Do it yourself: CSS für Profil und Blog

14.07.2012 um 13:27
@Prof.nixblick

DING DONG - Stimmt ich dämmel
das war nicht als Zeitleiste sondern Gesamtzeit wo man in Prozent angibt als 10% der Zeit usw. dan die Veränderung eintippt - ach ja :D

Anzeige
melden

Do it yourself: CSS für Profil und Blog

14.07.2012 um 13:28
@RobbyRobbe

rüschtisch :D


melden

Do it yourself: CSS für Profil und Blog

17.07.2012 um 12:55
@----
@yaacool

Könnte man vielleicht mal irgendwo alle Seitenelemente und deren Übersetzung auflisten, ich habs irgendwie geschafft das "Zuletzt Hier" Element unsichtbar zu machen, dabei weiss ich überhaupt nicht welches Element das ist.

Danke im vorraus.


melden

Do it yourself: CSS für Profil und Blog

17.07.2012 um 13:17
@du_selbst
Allmystery-Wiki: Klassen-Sammlung


melden

Do it yourself: CSS für Profil und Blog

17.07.2012 um 13:26
Danke @rutz!


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 12:25
Kann man auch Webfonts einbinden oder läuft das nur über den nicht ansprechbaren header?


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 14:45
@RobbyRobbe

Ja kann man. Bspw. Googlefonts


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 14:47
@Prof.nixblick

Das cool :note:


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 19:47
@RobbyRobbe
@mirror6

wisst ihr was,

ich fände es irre, wenn sich die schrift beim draufzeigen langsam auf den Kopf, respektive um den Spiegel drehen würde....


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 19:49
@du_selbst

Welchen Spiegel - meinst du so 180° drehen?


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 19:50
Genau. @RobbyRobbe


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 19:57
@du_selbst

Wie soll es sich sofort oder mittels delay nach einigen sekunden bzw. soll es dann so bleiben?


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:00
mittels delay ... sol langsam verdrehen hatte ich mir gedacht @RobbyRobbe


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:05
@du_selbst

.class {animation-delay: 1000,s;

-webkit-animation: cssAnimation 20s 1 ease;
-moz-animation: cssAnimation 10s 1 ease;
-o-animation: cssAnimation 20s 1 ease;
}

@-webkit-keyframes cssAnimation {
from { -webkit-transform: rotate(0deg);}
to { -webkit-transform: rotate(180deg);}
}
@-moz-keyframes cssAnimation {
from { -moz-transform: rotate(0deg);}
to { -moz-transform: rotate(180deg);}
}
@-o-keyframes cssAnimation {
from { -o-transform: rotate(0deg);}
to { -o-transform: rotate(180deg);}
}

Ich glaube so :ask: ich arbeite nicht mit Animation :3


melden
---- ehemaliges Mitglied

Link kopieren
Lesezeichen setzen

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:07
Da musste aber noch n bisschen üben.:)


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:15
löl. ich kriegs nicht gebacken =)


melden
---- ehemaliges Mitglied

Link kopieren
Lesezeichen setzen

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:22
probier mal das hier:

a {
-moz-transition: all 3s;
-webkit-transition: all 3s;
-o-transition: all 3s;
-ms-transition: all 3s;
transition: all 3s;
}

a:hover {
-moz-transform: scale(1,-1) !important;
-webkit-transform: scale(1,-1) !important;
-o-transform: scale(1,-1) !important;
-ms-transform: scale(1,-1) !important;
transform: scale(1,-1 !important);

-moz-transition: all 3s;
-webkit-transition: all 3s;
-o-transition: all 3s;
-ms-transition: all 3s;
transition: all 3s;
}

@du_selbst


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:25
ok mach ich, ...


melden
---- ehemaliges Mitglied

Link kopieren
Lesezeichen setzen

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:26
Stell auch direkt mal bitte alle deine css Regeln hier ein. irgendwie hab ich das Gefühl da herrscht n bissl Chaos mit doppelten Einträgen.


melden

Do it yourself: CSS für Profil und Blog

22.07.2012 um 20:33
funktionieren tuts jedenfalls mit den links, sollte mit dem rest auch zu schaffen sein, cool, danke dir .. verbeug =) @---- wo lernt man sowas?


Anzeige

melden