zoukankan      html  css  js  c++  java
  • 带圈的数字,类似开票网站开奖号码

    偶然看到群里有人问带圈圈的数字怎么搞,下面搞了一个,内容样式 大家可以随意换。
    如果你有更好的方法,欢迎留言,大家一起交流交流。。。。
    <%
    @ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <script type="text/javascript"> var omitformtags = ["input", "textarea", "select"] omitformtags = omitformtags.join("|") function disableselect(e) { if (omitformtags.indexOf(e.target.tagName.toLowerCase()) == -1) return false } function reEnable() { return true } if (typeof document.onselectstart != "undefined") document.onselectstart = new Function("return false") else { document.onmousedown = disableselect document.onmouseup = reEnable } </script> <script> function stop() { return false; } document.oncontextmenu = stop; </script> <body> <form id="form1" runat="server"> <div style=" 50px; height:50px; border-radius:25px;border:solid 3px; color:#4cff00"> <span style="height:50px; line-height:50px; display:block; color:#ff0000; text-align:center; font-size:30px; font-family:叶根友毛笔行书2.0版">4</span> </div> </form> </body> </html>
  • 相关阅读:
    母版中menu控件上传后出现脚本错误
    asp.net中修改网页的编码方式
    DataBinder的应用
    web服务器控件MultiView 应用
    asp:Wizard 应用
    web服务器控件PlaceHolder应用
    Gridivew里的Textbox值取不出来?
    登录控件Login的应用
    NHibernate调用存储过程
    FckEditor网页编辑器的使用总结
  • 原文地址:https://www.cnblogs.com/maoye520/p/10688135.html
Copyright © 2011-2022 走看看