码迷,mamicode.com
首页 >  
搜索关键字:INDEX SCAN    ( 41471个结果
position属性sticky
在目标区域以内,它的行为就像 position:relative; 而当页面滚动超出目标区域时,它的表现就像 position:fixed;,它会固定在目标位置。 元素定位表现为在跨越特定阈值前为相对定位,之后为固定定位。 这个特定阈值指的是 top, right, bottom 或 left 之一 ...
分类:其他好文   时间:2020-09-18 03:15:31    阅读次数:37
better-scroll 初步用法 demo
<template> <div> <div class="goods"> <div class="menu-wrapper" ref="menuWrapper"> <ul> <li v-for="(item,index) in dishes" :key="index" class="menu-ite ...
分类:其他好文   时间:2020-09-18 02:53:28    阅读次数:28
解读Datalogic产品线
[TOC]> [homepage](https://www.datalogic.com/chn/index.html)## 1. 品牌描述Datalogic(得利捷)公司1972年成立于意大利,经过四十多年的发展,已经成为了自动识别领域的领军企业。随着公司的发展,产品种类也在不断完善,目前Datal... ...
分类:其他好文   时间:2020-09-18 02:07:50    阅读次数:35
在线Jinja2解析器
模板: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> </head> <body> <p>综合运用列表和字典的模板文件</p> <table> <thead> <th>书名</t ...
分类:其他好文   时间:2020-09-18 02:06:42    阅读次数:28
(二分)进击的奶牛
1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 using namespace std; 5 const int N = 100010; 6 int house[N], n, c; 7 bool check(int ...
分类:其他好文   时间:2020-09-18 01:51:15    阅读次数:25
vue+elementui 将后端传来数据分级、平级
前端目标代码: <ul v-loading="loading"> <li v-for="(item, index) in options" :key="index" :style="{ cursor: item.tic_parent_id != 0 ? 'pointer' : '' }" :clas ...
分类:其他好文   时间:2020-09-18 01:50:58    阅读次数:24
页面中如何实现背景图100%铺满全屏
.box{ width:100%; background: url(../img/bg.png) no-repeat; background-size: 100% 100%; position: absolute; z-index: -1; top: 0; left: 0; right: 0; } ...
分类:其他好文   时间:2020-09-18 01:18:19    阅读次数:31
碰撞检测 :Line
目录 引子 Line/Point Line/Circle Line/Line Line/Rectangle 参考资料 引子 在 Collision Detection :Rectangle 中主要介绍了矩形相关的碰撞检测,接着来看看直线的情况。 以下示例未做兼容性检查,建议在最新的 Chrome 浏 ...
分类:其他好文   时间:2020-09-18 00:52:10    阅读次数:31
Oracle分区表中global_stats=YES global_stats=FALSE影响查询效率
select GLOBAL_STATS from user_indexes where index_name=index_name;LOBAL_STATS:>对于分区表,指示是否收集了统计信息>是针对整个表(YES)还是从统计信息中估计的>基础分区和子分区(NO) 分区表里global_stats= ...
分类:数据库   时间:2020-09-17 23:24:54    阅读次数:43
Dataset、DataLoader、DataLoaderIter
一、Dataset 对单个样本的处理 1、__getitem__: 返回一条数据或一个样本,obj[index] == obj.__getitem__() 2、__len__: 返回整个数据集中样本的数量,len(obj) == obj.__len__() 二、DataLoader 对batch个样 ...
分类:其他好文   时间:2020-09-17 23:20:15    阅读次数:32
41471条   上一页 1 ... 81 82 83 84 85 ... 4148 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!