上一页 1 ··· 3 4 5 6 7 8 9 下一页

2020年11月23日

摘要: Django中原始的上传文件按钮太丑,于是美化一下。 代码:CSS .upload-btn-wrapper { position: relative; display: inline-block; } .btn { border: 2px solid #454cad; color: #454cad; 阅读全文
posted @ 2020-11-23 10:13 Arron_Ramsey 阅读(218) 评论(0) 推荐(0) 编辑

2020年11月20日

摘要: JS语言 <script type="text/javascript"> function display(id){ var traget=document.getElementById(id); if(traget.style.display=="none"){ traget.style.disp 阅读全文
posted @ 2020-11-20 16:44 Arron_Ramsey 阅读(2074) 评论(0) 推荐(0) 编辑

2020年11月19日

摘要: html layui高度自适应layer.open({ type: 2, title: false, closeBtn: 0, shadeClose: true, area: ['675px','auto'], //宽高 content: ["./goodsDetail.html",'yes'], 阅读全文
posted @ 2020-11-19 18:25 Arron_Ramsey 阅读(2477) 评论(0) 推荐(0) 编辑

2020年11月18日

摘要: <table class="table table-striped"> <tr class="warning"> <td>序号</td> {% for column in show_columns %} <td>{{column}}</td> {% endfor %} </tr> {% for in 阅读全文
posted @ 2020-11-18 11:28 Arron_Ramsey 阅读(588) 评论(0) 推荐(1) 编辑

2020年11月12日

摘要: 针对不同cookie缓存不同url 用vary_on_headers 缺省情况下,Django 的缓存系统使用所请求的路径(如blog/article/1)来创建其缓存键。这意味着不同用户请求同样路径都会得到同样的缓存版本, 不考虑客户端user-agent, cookie和语言配置的不同, 除非你 阅读全文
posted @ 2020-11-12 16:00 Arron_Ramsey 阅读(89) 评论(0) 推荐(0) 编辑

2020年11月11日

摘要: css使a标签内文本垂直居中 a标签属于行内元素,默认情况下是不支持设置宽高的,仅依靠内容来“撑大自己”。这时我们需要用css的display属性并且值设置为block即可。这么设置浏览器就会将被设置的a标签识别为块元素。这时宽高的设置参数就有效了。 a标签的文字垂直居中很简单,只需要设置css的l 阅读全文
posted @ 2020-11-11 16:50 Arron_Ramsey 阅读(4426) 评论(0) 推荐(0) 编辑
 
摘要: 在img标签里面只设置宽,不设置高,图片就会等比例缩放。 #logo { height:100%; } <div class="branding"> <img src="/static/image/logo.png" alt="" id="logo"> </div> 阅读全文
posted @ 2020-11-11 11:41 Arron_Ramsey 阅读(15253) 评论(2) 推荐(0) 编辑
 
摘要: 将鼠标移动到div上,显示提示信息(div),并且鼠标移动,显示的div随着鼠标的移动而移动,移出div,显示消失(div)。 {% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> 阅读全文
posted @ 2020-11-11 11:16 Arron_Ramsey 阅读(1816) 评论(0) 推荐(0) 编辑

2020年11月10日

摘要: {% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>covid-19_US_status</title> <link rel="stylesheet" href=" 阅读全文
posted @ 2020-11-10 20:25 Arron_Ramsey 阅读(1002) 评论(0) 推荐(0) 编辑

2020年11月7日

摘要: (.*?):(.*) '$1':'$2', 阅读全文
posted @ 2020-11-07 10:52 Arron_Ramsey 阅读(315) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页