/* element_id          物件id
/* trigger_prev 上一張圖

amychang2014 發表在 痞客邦 留言(0) 人氣()

table-layout: fixed

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

<body><divstyle="position: absolute;left:50%;"><divstyle="position: relative;left:-50%;border: dotted red 1px;">
            I am some centered shrink-to-fit content! <br/>
            tum te tum
        </div></div></body>

amychang2014 發表在 痞客邦 留言(0) 人氣()

http://tabletag.net/

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

https://raw.githubusercontent.com/scottjehl/Respond/master/src/respond.js

<scriptsrc="jquery-1.10.2.min.js"></script>

amychang2014 發表在 痞客邦 留言(0) 人氣()

http://bunnymoon0326.weebly.com/blog/css-px-pt-em-rem


amychang2014 發表在 痞客邦 留言(0) 人氣()

http://mepopedia.com/forum/read.php?804,15393

amychang2014 發表在 痞客邦 留言(0) 人氣()

border: 1px solid #696;
padding: 60px 0;
text-align: center; width: 200px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
-webkit-box-shadow: #666 0px 2px 3px;
-moz-box-shadow: #666 0px 2px 3px;
box-shadow: #666 0px 2px 3px;
background: #EEFF99;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EEFF99), to(#66EE33));
background: -webkit-linear-gradient(#EEFF99, #66EE33);
background: -moz-linear-gradient(#EEFF99, #66EE33);
background: -ms-linear-gradient(#EEFF99, #66EE33);
background: -o-linear-gradient(#EEFF99, #66EE33);
background: linear-gradient(#EEFF99, #66EE33);
-pie-background: linear-gradient(#EEFF99, #66EE33);
behavior: url(/pie/PIE.htc);

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

var MobileReg = /^(09)[0-9]{8}$/;
(str.match(MobileReg)) ? true : false

amychang2014 發表在 痞客邦 留言(0) 人氣()

<div class="container">
    <div class="row">
        <div class='col-sm-6'>
            <div class="form-group">
                <div class='input-group date' id='datetimepicker2'>
                    <input type='text' class="form-control" />
                    <span class="input-group-addon">
                        <span class="glyphicon glyphicon-calendar"></span>
                    </span>
                </div>
            </div>
        </div>
        <script type="text/javascript">
            $(function () {
                $('#datetimepicker2').datetimepicker({
                    locale: 'ru'
                });
            });
        </script>
    </div>
</div>

amychang2014 發表在 痞客邦 留言(0) 人氣()