Foren
Neue Beiträge
Foren durchsuchen
Was ist neu?
Neue Beiträge
Profilnachrichten
Online
Anmelden
Registrieren
Aktuelles
Suche
Suche
Nur Titel durchsuchen
Von:
Neue Beiträge
Foren durchsuchen
Menü
Anmelden
Registrieren
App installieren
Installieren
Programmierung
CSS
Need help :)
JavaScript ist deaktiviert. Für eine bessere Darstellung aktiviere bitte JavaScript in deinem Browser, bevor du fortfährst.
Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden.
Du solltest ein Upgrade durchführen oder einen
alternativen Browser
verwenden.
Auf Thema antworten
Beitrag
[QUOTE="basti1012, post: 13471, member: 1688"] The css code in codepen is written in CSS(less). You need to click the little down arrow and then press compiled css This is the normal css [CODE]@-webkit-keyframes up-in { from { opacity: 0; bottom: 0%; } to { opacity: 1; bottom: 50%; } } @keyframes up-in { from { opacity: 0; bottom: 0%; } to { opacity: 1; bottom: 50%; } } .fill { background-repeat: no-repeat; background-position: center center; background-size: cover; background-attachment: fixed; } body, html { height: 100%; min-width: 100%; min-height: 100%; margin: 0; padding: 0; overflow: hidden; font-family: "Raleway", sans-serif; } .flex-row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around; } .container { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around; width: 100%; min-height: 100%; height: 100%; overflow: auto; background-color: white; position: relative; } .container.no-scroll { overflow: hidden; } .page { width: 80%; padding: 10px; background-color: white; } @media (max-width: 600px) { .page { width: 90%; } } .grid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around; } .grid .grid-item { width: 33%; position: relative; } .grid .grid-item:after { content: ""; display: block; margin-top: 100%; } @media (max-width: 600px) { .grid .grid-item { width: 50%; } } .box { position: absolute; top: 10px; bottom: 10px; left: 10px; right: 10px; background-color: white; background-size: cover; background-repeat: no-repeat; background-position: center top; overflow: hidden; cursor: pointer; } .box img { width: 100%; transition: transform 0.6s ease; } .box.selected { opacity: 0; } .box.on-top { cursor: default; transition: all 0.4s ease; box-shadow: 2px 2px 19px -2px rgba(0, 0, 0, 0.44); } .box.image-out img { transform: translateY(-100%); } .content { position: absolute; padding: 20px 40px; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; transition: opacity 0.5s ease; } .show .content { opacity: 1; } @media (max-width: 600px) { .content { padding: 10px 20px; } } .scroller { position: fixed; top: 0; right: 0; bottom: 0; left: 0; overflow-y: auto; } .scroller h1 { color: white; width: 100%; margin-bottom: 30px; position: absolute; bottom: 50%; text-align: center; -webkit-animation: up-in 1s ease; animation: up-in 1s ease; } .top-up.ng-hide-add, .top-up.ng-hide-remove { transition: 0s ease top; } .top-up.ng-hide-add-active, .top-up.ng-hide-remove-active { transition: 0.6s ease top; } .top-up.ng-hide-add { top: 0; } .top-up.ng-hide-add.ng-hide-add-active { top: 100%; } .top-up.ng-hide-remove { top: 100%; } .top-up.ng-hide-remove.ng-hide-remove-active { top: 0; } .fullscreen-background { overflow-y: auto; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: #333; transition: top 0.5s ease; background-repeat: no-repeat; background-position: center center; background-size: cover; background-attachment: fixed; } .fullscreen-background.show { top: 0; } .close-button { position: fixed; top: 20px; right: 20px; color: white; cursor: pointer; } .close-button i { font-size: 35px; } .close-button:hover { color: #ddd; } [/CODE] [/QUOTE]
Zitate
Authentifizierung
Antworten
Programmierung
CSS
Need help :)
Oben
Unten