- 日期:2013/2/15-16
- 地圖:http://goo.gl/maps/n6H99
- 開放路肩行駛:
- 高速公路疏導措施一覽表
- 國 3「大溪」至「龍潭」南下:63K+100 - 67K+500。
- 國 3「霧峰」至「中投」北上:210K+500 - 209K+830。
- 高速公路疏導措施一覽表
- 國 3「竹林」至「關西」北上:89K+800 - 81K+400。
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>SWF & JavaScript Key Event</title> | |
<style> | |
#focusable-link { | |
position: absolute; | |
left: -1000em; | |
top: -1000em; | |
} |
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
function splitUrl(base, files, separator, maxLength) { | |
base = base || "/"; | |
files = files || []; | |
separator = separator || ","; | |
maxLength = maxLength || 1024; | |
var items = [], | |
results = [], | |
url = base + files.join(separator), |
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
<?php | |
/** | |
* Copy from http://www.php.net/manual/en/function.array-merge-recursive.php#92195 | |
* | |
* array_merge_recursive does indeed merge arrays, but it converts values with duplicate | |
* keys to arrays rather than overwriting the value in the first array with the duplicate | |
* value in the second array, as array_merge does. I.e., with array_merge_recursive, | |
* this happens (documented behavior): | |
* | |
* array_merge_recursive(array('key' => 'org value'), array('key' => 'new value')); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="author" content="josephj"> | |
<meta name="created" content="2013-02-19"> | |
<title>CSS3 - display:table</title> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssreset/reset-min.css"> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssfonts/fonts-min.css"> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssbase/base-min.css"> |
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
// START WRAPPER: The YUI.add wrapper is added by the build system, when you | |
// use Shifter to build your component from the raw source in this file | |
YUI.add("iframe-step", function(Y) { | |
/* Any frequently used shortcuts, strings and constants */ | |
var Lang = Y.Lang; | |
/* IframeStep class constructor */ | |
function IframeStep(config) { | |
IframeStep.superclass.constructor.apply(this, arguments); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="author" content=""> | |
<meta name="created" content="2013-01-28"> | |
<title> Prototype</title> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssreset/reset-min.css"> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssfonts/fonts-min.css"> | |
<style type="text/css"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Image / Text Module</title> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssreset/reset-min.css"> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.7.2/build/cssfonts/fonts-min.css"> | |
<style> | |
.mod { | |
width: 50%; /* Set flexible layout for testing */ |
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 "compass"; | |
/** | |
* A pure CSS mask which centralizes content inside. | |
* This technique is compatible with IE7+ and major standard browsers. | |
* | |
* Required HTML structure: | |
* | |
* <div class="mask"> | |
* <div class="mask-box"> | |
* <div class="mask-inner-box"> |
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
mods[“ykpsb”] = function () { | |
// 利用闭包与外界隔绝 | |
var privateVar, | |
publicFn; | |
// 内部自行处理,不会影响其他模块 | |
privateVar = "123"; | |
publicFn = function () {}; |