偶然看到群里有人问带圈圈的数字怎么搞,下面搞了一个,内容样式 大家可以随意换。
如果你有更好的方法,欢迎留言,大家一起交流交流。。。。
<%@ 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>