#goTop {
position: fixed;
bottom: 5px; /* 與下方的距離, 也可改為百分比, 即為距離螢幕下方的百分比 */
right: 5px; /* 與右方的距離 */
width: 40px; /* 按鈕原始寬度 */
height: 40px; /* 按鈕原始高度 */
opacity: 0.4; /* 按鈕原始透明度 */
z-index: 10;
cursor: pointer;
transition: all .5s; /* 動畫效果 持續期間 */
-webkit-transition: all .5s;
-moz-transition: all .5s;
}
#goTop:hover { /* 滑鼠經過按鈕時 */
opacity: 1; /* 透明度 */
width: 80px; /* 按鈕寬度 */
height: 80px; /* 按鈕高度 */
}
</style>

 

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

Hover.css

http://ianlunn.github.io/Hover/

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

  • Mar 03 Thu 2016 10:05
  • CSS

Golden Hour

https://goldenhour.photos/

animate.css

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

  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:
public bool 寫入記錄(string 檔案路徑, string 檔名, string 內容, bool 系統記錄 = false)
    {
        string 存檔檔案路徑 = 檔案路徑;
        if (系統記錄)
            存檔檔案路徑 = molo.errlog.path + "\\" + DateTime.Now.ToString("yyyyMMdd") + "\\";

        bool 是否成功 = true;
        DirectoryInfo logDirection = new DirectoryInfo(存檔檔案路徑);
        FileInfo logFile = new FileInfo(存檔檔案路徑 + 檔名 + ".txt");
        lock (logFile)
        {
            try
            {
                if (!logDirection.Exists)
                    logDirection.Create();

                StreamWriter messageSystemLogStream = logFile.AppendText();
                messageSystemLogStream.WriteLine(內容);
                messageSystemLogStream.Flush();
                messageSystemLogStream.Close();
                messageSystemLogStream.Dispose();
                messageSystemLogStream = null;
            }
            catch
            {
                是否成功 = false;
            }
        }
        return 是否成功;
    }

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

public void alert(string msg, string url = )
    {
        string js = alert(' + msg + ');;
        if (url != )
            js += location.href=' + url + ';;
        ScriptManager.RegisterClientScriptBlock((Page)HttpContext.Current.Handler, typeof(string), js, js, true);
    }

private void 開啟遮罩()
    {
        ScriptManager.RegisterClientScriptBlock((Page)HttpContext.Current.Handler, typeof(string), "js", "openpop();", true);
        //ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "js", "openpop();", true);
    }
    private void 關閉遮罩(string msg = "")
    {
        string js = "closepop();";
        if (msg != "")
        {
            js += "alert('" + msg + "');";
        }
        ScriptManager.RegisterClientScriptBlock((Page)HttpContext.Current.Handler, typeof(string), "js", js, true);
        //ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "js", js, true);
    }

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

  • Feb 05 Fri 2016 14:28
  • C# XML

<asp:GridView ID="TaskGridView" runat="server" Width="100%" AutoGenerateColumns="False" CellPadding="5" AllowPaging="True" PageSize="20" OnPageIndexChanging="TaskGridView_PageIndexChanging">
    <Columns>
        <asp:TemplateField HeaderText="NO" ItemStyle-Width="5%">
            <ItemTemplate>
                <%#TaskGridView.PageIndex * TaskGridView.PageSize + TaskGridView.Rows.Count + 1 %>
            </ItemTemplate>
            <ItemStyle Width="5%" />
        </asp:TemplateField>                           
        <asp:TemplateField HeaderText="排序">
            <ItemTemplate><asp:Label ID="lb_排序" runat="server" CssClass="lb_排序" Text='<%# Bind("Order") %>'></asp:Label>
            </ItemTemplate>
            <ItemStyle Width="5%" />
        </asp:TemplateField>
        <asp:BoundField HeaderText="廣告服務名稱" DataField="Name" ItemStyle-Width="10%">
        <ItemStyle Width="20%" />
        </asp:BoundField>
        <asp:TemplateField HeaderText="圖片名稱">
            <ItemTemplate>
                <asp:Image ID="Image1" runat="server" ImageUrl='<%# @"upload\"+Eval("Img").ToString() %>'></asp:Image>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="連結網址">                                
            <ItemTemplate>
                <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# Eval("Link") %>' Target="_blank"><%# Eval("Link") %></asp:HyperLink>
            </ItemTemplate>
            <ItemStyle Width="25%" />
        </asp:TemplateField>
        <asp:TemplateField HeaderText="編輯" ItemStyle-Width="15%">
            <ItemTemplate>
                <asp:LinkButton ID="lbtn_修改" runat="server" Text="編輯" CommandArgument='<%#Eval("No") %>' OnClick="lbtn_修改_Click" data-Order='<%#Eval("Order") %>' data-Name='<%#Eval("Name") %>' data-Img='<%#Eval("Img") %>' data-Link='<%#Eval("Link") %>'  />                                   
            </ItemTemplate>
            <ItemStyle Width="5%" />
        </asp:TemplateField>
        <asp:TemplateField HeaderText="刪除" ItemStyle-Width="15%">
            <ItemTemplate>
                <asp:LinkButton ID="lbtn_刪除" runat="server" Text="刪除" CommandArgument='<%#Eval("No") %>' CommandName='<%#Eval("Img") %>' OnClick="lbtn_刪除_Click" OnClientClick="return checkForm_del();" />
            </ItemTemplate>
            <ItemStyle Width="5%" />
        </asp:TemplateField>
    </Columns>
</asp:GridView>

protected XElement 讀寫XML(ref string result, XElement root = null)
{
    FileInfo logFile = new FileInfo(Server.MapPath(molo.XML.xmlPath));
    lock (logFile)
    {
        //取檔,檔案不存在建立XML
        if (!File.Exists(Server.MapPath(molo.XML.xmlPath)))
        {
            XmlDocument Xmldoc = new XmlDocument();
            ////從指定的字串載入XML文件
            Xmldoc.LoadXml("<?xml version=\"1.0\" encoding=\"utf-8\"?><MyRootNode />");
            Xmldoc.Save(Server.MapPath(molo.XML.xmlPath));
            //此為異常處理,寫log記錄
            string 內容 = "讀取廣告失敗:找不到檔案重新建立\t時間:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
            all.寫入記錄("", molo.errlog.檔名_XMLerror, 內容, true);
        }
        if (root == null) //讀取
        {
            root = XElement.Load(Server.MapPath(molo.XML.xmlPath));
            result = "成功";
        }
        else   //寫入
        {
            try
            {
                root.Save(Server.MapPath(molo.XML.xmlPath));
                result = "成功";
            }
            catch (Exception ex)
            {
                result = "寫入失敗\t" + ex.ToString();
            }
        }
    }
    return root;
}

//新建XML文件類別
XmlDocument Xmldoc = new XmlDocument();
//從指定的路徑載入XML文件
string result = "";
XElement root = 讀寫XML(ref result);
Xmldoc.LoadXml(root.ToString());
//建立此物件,並輸入透過StringReader讀取Xmldoc中的Xmldoc字串輸出
XmlReader Xmlreader = XmlReader.Create(new System.IO.StringReader(Xmldoc.OuterXml));
//建立DataSet
DataSet ds = new DataSet();
//透過DataSet的ReadXml方法來讀取Xmlreader資料
ds.ReadXml(Xmlreader);
if (ds != null)
{
    if (ds.Tables.Count > 0)
    {
        TaskGridView.DataSource = ds;
    }else
    {
        TaskGridView.DataSource = null;
                    
    }
    TaskGridView.DataBind();
}

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

namespace mo
{
    public struct XML
    {
        public const string xmlPath = "../_xml/gamebanner.xml";
    }
}

 

使用mo.XML.xmlPath

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

  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:

<form action="" method="post" enctype="multipart/form-data">
    <div class="upload">

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