Skip to content

Instantly share code, notes, and snippets.

View Taump's full-sized avatar
💪
Not give up is my magic

Alexander Ponomarev Taump

💪
Not give up is my magic
View GitHub Profile
@Taump
Taump / todo.js
Created November 4, 2017 13:04
Todo React
import React, {Component} from 'react';
import './App.css';
class App extends Component {
constructor() {
super();
this.state = {
data: [],
inputVal: '',
}
@Taump
Taump / breakpoints.css
Created June 29, 2017 10:25 — forked from MatthewEppelsheimer/breakpoints.css
Responsive Break Point Media Query Boilerplate
// Mobile First
@media screen and (min-width: 321px) { // iPhone landscape
}
@media screen and (min-width: 481px) { // iPad portrait
}
@Taump
Taump / HTML5shiv
Created June 25, 2017 10:14
Поддержка ie тегов html5
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
heightDetect();
function heightDetect(){
$(".main_head").css('height',$(window).height());
};
$(window).resize(function(){
heightDetect();
});