码迷,mamicode.com
首页 >  
搜索关键字:bottom bar    ( 10976个结果
栈的基本操作(链表)
栈的链表的操作和线性表的链式存储结构差不多。 我们用图来形象表达一下 线性表的顺序存储结构: 链栈: 链栈的基本操作有栈的初始化、插入数据、删除数据、遍历栈 对应的代码为: //栈的初始化 int InitStack(Stack *stack){ stack->top=stack->bottom=N ...
分类:其他好文   时间:2021-06-11 18:10:14    阅读次数:0
pygame之精灵对象和精灵组
1、创建精灵对象和精灵组 import random import pygame from pygame.locals import * class Player(pygame.sprite.Sprite): # 继承pygame.sprite.Sprite精灵对象 def __init__(sel ...
分类:其他好文   时间:2021-06-10 18:44:12    阅读次数:0
关于路由的摘记
指南: https://router.vuejs.org/zh/guide/essentials/dynamic-matching.html#%E5%93%8D%E5%BA%94%E8%B7%AF%E7%94%B1%E5%8F%82%E6%95%B0%E7%9A%84%E5%8F%98%E5%8C% ...
分类:其他好文   时间:2021-06-10 18:18:38    阅读次数:0
【nginx】配置Nginx实现负载均衡
在关于高并发负载均衡一文中已经提到,企业在解决高并发问题时,一般有两个方向的处理策略,软件、硬件,硬件上添加负载均衡器分发大量请求,软件上可在高并发瓶颈处:数据库+web服务器两处添加解决方案,其中web服务器前面一层最常用的的添加负载方案就是使用nginx实现负载均衡。 一、负载均衡的作用 1、转 ...
分类:其他好文   时间:2021-06-10 18:14:38    阅读次数:0
解决 elementUI 切换tab后 el_table 固定列下方多了一条线;取消tab页click蓝色下标线
<style lang="scss" scoped> /*取消tab页click蓝色下标线*/ .el-tabs__active-bar { background-color: transparent !important; } /*解决 elementUI 切换tab后 el_table 固定列下 ...
分类:其他好文   时间:2021-06-10 17:44:25    阅读次数:0
CSS基础
position 规定元素的定位类型。参考链接:https://www.cnblogs.com/guolao/p/9048308.html static 默认值,正常布局,此时的top、right、bottom、left 属性无效。 absolute 绝对定位,相对于static 定位以外 的第一个 ...
分类:Web程序   时间:2021-06-10 17:39:38    阅读次数:0
函数基础
函数基础 三问: # 什么是函数 函数就是封装了一个功能 # 为什么用 实现代码的整,增加代码可读性,减少代码冗余,增强可扩展性 # 怎么用 先定义在调用 函数定义 def 函数名(参数1,参数2 ...): '''文档描述''' 函数体 return 函数调用 函数名() ''' 定义函数只检测语 ...
分类:其他好文   时间:2021-06-10 17:37:40    阅读次数:0
特殊装饰器
before_request、after_requestfrom flask import Flask,render_template,redirect app = Flask(__name__) """ before_reuqest = [xxxxxxxxxx1,xxxxxxxxxx2] """ ...
分类:其他好文   时间:2021-06-08 23:12:09    阅读次数:0
负Margin技术,轻松实现 1.自适应两列布局,2.元素垂直居中(相对定位)
1.负margin技术: 当元素的margin-top和margin-left取负值时,“当前元素”会被拉向指定方向。 当元素的margin-bottom和margin-right取负值时,“后续元素”会被拉向指定方向。 自适应两列布局 <style> *{margin:0} .main,.side ...
分类:其他好文   时间:2021-06-07 20:00:34    阅读次数:0
Node.js之Path模块中的常用方法
1、参考文档:https://nodejs.org/dist/latest-v14.x/docs/api/path.html 2、path.basename:获取一个路径中的文件名(默认包含扩展名) path.basename('/foo/bar/baz/asdf/quux.html'); // R ...
分类:Web程序   时间:2021-06-06 19:35:28    阅读次数:0
10976条   上一页 1 2 3 4 5 6 ... 1098 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!