• 带圈的数字,类似开票网站开奖号码


    偶然看到群里有人问带圈圈的数字怎么搞,下面搞了一个,内容样式 大家可以随意换。
    如果你有更好的方法,欢迎留言,大家一起交流交流。。。。
    <%
    @ 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>
  • 相关阅读:
    Spring框架开发的三种模式
    IDEA 的Surround With快捷键
    Spring框架IOC和AOP的实现原理与详解
    mitmproxy 安装配置
    adb 使用
    小象代理
    requests 模块查看请求的ip地址
    smtplib 邮件模块
    淘宝直播数据爬取 + 淘宝模拟登陆
    postgresql基础操作
  • 原文地址:https://www.cnblogs.com/maoye520/p/10688135.html
Copyright © 2020-2023  润新知