#style-4::-webkit-scrollbar-track
{

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

//裁圖工具

http://tympanus.net/codrops/2014/10/30/resizing-cropping-images-canvas/

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

z-index 要加 position 才有效。

單邊陰影:-webkit-box-shadow: 0px 3px 25px -2px #888;

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

http://www.codeproject.com/Articles/668182/Difference-betweeen-ASP-NET-WebForms-and-ASP-NET-M


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

public partial class MasterPage : MasterBase
{
    int pushid = 0;   //照順序排才不會亂掉

AddheadControl(headertype.css, "~/css/master.css", pushid++);
AddheadControl(headertype.css, "~/css/btn.css", pushid++);
AddheadControl(headertype.js, "~/js/jquery-1.9.1.min.js", pushid++);
AddheadControl(headertype.js, "~/myJS/cherryblockV2-min.js", pushid++);
AddheadControl(headertype.js, "~/myJS/illya.js", pushid++);
AddheadControl(headertype.js, "~/myJS/AjaxHandler.js?140522", pushid++);
AddheadControl(headertype.js, "~/myJS/base.js?140929", pushid++);
AddheadControl(headertype.js, "~/myJS/msChkboxKai.js", pushid++);
AddheadControl(headertype.js, "~/myJS/oebigfire-min.js", pushid++);

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

DataTable dt = ds.Tables[0];
RP_leftnews.DataSource = dt;
RP_leftnews.DataBind();

<asp:Repeater ID="RP_leftnews" runat="server">
    <ItemTemplate>
        <ul class="newList">
            <li><a href="<%#Eval("link") %>"><img alt="" src="<%#Eval("pic") %>" /></a></li>
            <li style="width:73%">
                <p class="newsTitle"><a href="<%#Eval("link") %>"><%#Eval("lefttitle") %></a></p>
                <p class="newsRightdate" style="padding-bottom: 6px;"><%#Eval("date") %></p>
                <p class="newsContent"><%#Eval("leftcontent") %>....</p>
            </li>
        </ul>                       
    </ItemTemplate>
</asp:Repeater>

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

myString = myString.Replace(System.Environment.NewLine,"replacement text")

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

<script src="<%=ResolveClientUrl("~/js/xxx.js") %>">
<img runat="server" src="~/qq.jpg" />

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

var lastScrollTop =0;
$(window).scroll(

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

http://alvarotrigo.com/fullPage/#firstPage

http://www.thepetedesign.com/demos/onepage_scroll_demo.html

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