Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css transition slide up

//Method 1:Using translateY() can make an an element go up(negative values) or down(positive values)
.slides-up{
	transform: translateY(-200px)
}
//Method 2: Using translate(X Y)
.slides-up{
	transform: translate(0 -200px)
}
//Method 3: Using translate3d(X Y Z)
.slides-up{
	transform: translate3d( 0 -200px 0)
}
Comment

css transition slide down

* {
  margin:0;
  padding:0;
  font-family:"Helvetica Neue", Helvetica, Sans-serif;
  word-spacing:-2px;
}

h1 {
  font-size:40px;
  font-weight:bold;
  color:#191919;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-weight:normal;
  font-size:20px;
  color:#888;
  padding:5px 0;
}

.message {
background:#181818;
color:#FFF;
position: absolute;
top: -250px;
left: 0;
width: 100%;
height: 250px;
padding: 20px;
transition: top 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
overflow: hidden;
box-sizing: border-box;
  
}

.message h1 {
  color:#FFF;
}

#toggle {
  position:absolute;
  appearance:none;
  cursor:pointer;
  left:-100%;
  top:-100%;
}

#toggle + label {
  position:absolute;
  cursor:pointer;
  padding:10px;
  background: #26ae90;
width: 100px;
border-radius: 3px;
padding: 8px 10px;
color: #FFF;
line-height:20px;
font-size:12px;
text-align:center;
-webkit-font-smoothing: antialiased;
cursor: pointer;
  margin:20px 50px;
  transition:all 500ms ease;
}
#toggle + label:after {
  content:"Open" 
}

.container {
transition: margin 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  padding:5em 3em;
}

#toggle:checked ~ .message {
  top: 0;
}

#toggle:checked ~ .container {
  margin-top: 250px;
}

#toggle:checked + label {
  background:#dd6149;
}

#toggle:checked + label:after {
  content:"Close"
}

Comment

PREVIOUS NEXT
Code Example
Css :: input placeholder css 
Css :: Adding gradient to text color 
Css :: padding shorthand 
Css :: media query for mobile min and max width 
Css :: how to center a text input in css 
Css :: how to fix the nav bar to the left of the page 
Css :: css grow 
Css :: top left right bottom css shorthand 
Css :: how to add fanctoin to links in css 
Css :: curved lines css 
Css :: css inline text color 
Css :: style image so it crops 
Css :: souligner titre css 
Css :: html glow on hover 
Css :: css transition delay after hover 
Css :: how to manage overflowing text in button 
Css :: nth child css tricks 
Css :: set svg background color css 
Css :: fill and no repeat background image css 
Css :: how to center a html header 
Css :: boostrap line 
Css :: remove on click border 
Css :: z index div over cursor 
Css :: css hide text 
Css :: how to view downloading speed 
Css :: css input radio checked 
Css :: css bold 
Css :: gradient 3 colors 
Css :: Timeout for a fetch 
Css :: how to underline text in css 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =