This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react'; | |
| import './App.css'; | |
| class App extends Component { | |
| constructor() { | |
| super(); | |
| this.state = { | |
| data: [], | |
| inputVal: '', | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Mobile First | |
| @media screen and (min-width: 321px) { // iPhone landscape | |
| } | |
| @media screen and (min-width: 481px) { // iPad portrait | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--[if lt IE 9]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| heightDetect(); | |
| function heightDetect(){ | |
| $(".main_head").css('height',$(window).height()); | |
| }; | |
| $(window).resize(function(){ | |
| heightDetect(); | |
| }); |
NewerOlder