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
[UIApplication sharedApplication].statusBarHidden = YES; |
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
<iframe width='500' height='300' frameBorder='0' src='http://a.tiles.mapbox.com/v3/vince78718.map-6z5j80z7.html#5/24.35710549396971/-238.95889680612004'></iframe> |
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
<input type="text" onkeyup="value=value.replace(/[^-_0-9]/g,'')"> |
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
@carrot :#E67E22; | |
/* Mozilla based browsers */ | |
::-moz-selection { | |
background-color: @carrot; | |
} | |
/* Works in Safari */ | |
::selection { | |
background-color: @carrot; |
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
typedef enum { | |
UIViewContentModeScaleToFill, | |
UIViewContentModeScaleAspectFit, | |
UIViewContentModeScaleAspectFill, | |
UIViewContentModeRedraw, | |
UIViewContentModeCenter, | |
UIViewContentModeTop, | |
UIViewContentModeBottom, | |
UIViewContentModeLeft, | |
UIViewContentModeRight, |
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
// myUIImageView is an instance of UIImageView | |
[myUIImageView setContentMode] = UIViewContentModeCenter; |
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
$this->load->library('pagination'); | |
// Config Pagination | |
$config = array( | |
'base_url' => base_url(), | |
'total_rows' => 100, | |
'per_page' => 10, | |
'full_tag_open' => '<div class="pagination pagination-centered"><ul>', | |
'full_tag_close' => '</ul></div>', | |
'first_link' => $this->lang->line('First'), |
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
// Config Pagination | |
$pagination = $this->config->config['pagination']; | |
$pagination['base_url'] = 'the/base/url/you/want/to/use'; | |
$pagination['total_rows'] = 1000; |
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
// 1. Autoload | |
// In application/config/autoload.php around line 82 | |
$autoload['config'] = array('pagination'); | |
// 2. Manually | |
$this->load->config('pagination'); |
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
// 取得 400*200 的隨機圖片 | |
http://lorempixel.com/200/200 | |
// 在長、寬前加上參數 "g" 可以讓隨機圖片變灰階 | |
http://lorempixel.com/g/200/200 |
OlderNewer