code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
// 间距基础倍数 $uni-space-root: 2; // 边框半径默认值 $uni-radius-root:5px; // 主色 $uni-primary: #2979ff; // 辅助色 $uni-success: #4cd964; // 警告色 $uni-warning: #f0ad4e; // 错误色 $uni-error: #dd524d; // 描述色 $uni-info: #909399; // 中性色 $uni-main-color: #303133; $uni-base-color: #606266; $uni-secondary-color: #909399; $uni-extra-color: #C0C4...
2202_75391616/ui
uni_modules/uni-scss/theme.scss
SCSS
unknown
641
@import './styles/setting/_variables.scss'; // 间距基础倍数 $uni-space-root: 2; // 边框半径默认值 $uni-radius-root:5px; // 主色 $uni-primary: #2979ff; $uni-primary-disable:mix(#fff,$uni-primary,50%); $uni-primary-light: mix(#fff,$uni-primary,80%); // 辅助色 // 除了主色外的场景色,需要在不同的场景中使用(例如危险色表示危险的操作)。 $uni-success: #18bc37; $uni-success-di...
2202_75391616/ui
uni_modules/uni-scss/variables.scss
SCSS
unknown
1,764
import en from './en.json' import zhHans from './zh-Hans.json' import zhHant from './zh-Hant.json' export default { en, 'zh-Hans': zhHans, 'zh-Hant': zhHant }
2202_75391616/ui
uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js
JavaScript
unknown
162
<template> <view class="uni-searchbar"> <view :style="{borderRadius:radius+'px',backgroundColor: bgColor}" class="uni-searchbar__box" @click="searchClick"> <view class="uni-searchbar__box-icon-search"> <slot name="searchIcon"> <uni-icons color="#c0c4cc" size="18" type="search" /> </slot> </view...
2202_75391616/ui
uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue
Vue
unknown
7,304
<template> <view class="uni-section"> <view class="uni-section-header" @click="onClick"> <view class="uni-section-header__decoration" v-if="type" :class="type" /> <slot v-else name="decoration"></slot> <view class="uni-section-header__content"> <text :style="{'font-size':titleFontSize,...
2202_75391616/ui
uni_modules/uni-section/components/uni-section/uni-section.vue
Vue
unknown
3,700
<template> <view :class="[styleType === 'text'?'segmented-control--text' : 'segmented-control--button' ]" :style="{ borderColor: styleType === 'text' ? '' : activeColor }" class="segmented-control"> <view v-for="(item, index) in values" :class="[styleType === 'text' ? '' : 'segmented-control__item--button', i...
2202_75391616/ui
uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.vue
Vue
unknown
3,768
<template> <view class="uni-steps"> <view :class="[direction==='column'?'uni-steps__column':'uni-steps__row']"> <view :class="[direction==='column'?'uni-steps__column-text-container':'uni-steps__row-text-container']"> <view v-for="(item,index) in options" :key="index" :class="[direction==='column'?'uni-s...
2202_75391616/ui
uni_modules/uni-steps/components/uni-steps/uni-steps.vue
Vue
unknown
6,568
<template> <view> <slot></slot> </view> </template> <script> /** * SwipeAction 滑动操作 * @description 通过滑动触发选项的容器 * @tutorial https://ext.dcloud.net.cn/plugin?id=181 */ export default { name:"uniSwipeAction", data() { return {}; }, created() { this.children = []; }, methods: { // 公开给用户使...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue
Vue
unknown
1,256
let bindIngXMixins = {} // #ifdef APP-NVUE const BindingX = uni.requireNativePlugin('bindingx'); const dom = uni.requireNativePlugin('dom'); const animation = uni.requireNativePlugin('animation'); bindIngXMixins = { data() { return {} }, watch: { show(newVal) { if (this.autoClose) return if (this.stop) ...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js
JavaScript
unknown
6,533
export function isPC() { var userAgentInfo = navigator.userAgent; var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; var flag = true; for (let v = 0; v < Agents.length - 1; v++) { if (userAgentInfo.indexOf(Agents[v]) > 0) { flag = false; break; } } return flag; }
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js
JavaScript
unknown
311
export default { data() { return { x: 0, transition: false, width: 0, viewWidth: 0, swipeShow: 0 } }, watch: { show(newVal) { if (this.autoClose) return if (newVal && newVal !== 'none') { this.transition = true this.open(newVal) } else { this.close() } } }, created() ...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpalipay.js
JavaScript
unknown
4,065
let otherMixins = {} // #ifndef APP-PLUS|| MP-WEIXIN || H5 const MIN_DISTANCE = 10; otherMixins = { data() { // TODO 随机生生元素ID,解决百度小程序获取同一个元素位置信息的bug const elClass = `Uni_${Math.ceil(Math.random() * 10e5).toString(36)}` return { uniShow: false, left: 0, buttonShow: 'none', ani: false, moveLeft: ...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js
JavaScript
unknown
5,635
let mpMixins = {} let is_pc = null // #ifdef H5 import { isPC } from "./isPC" is_pc = isPC() // #endif // #ifdef APP-VUE|| MP-WEIXIN || H5 mpMixins = { data() { return { is_show: 'none' } }, watch: { show(newVal) { this.is_show = this.show } }, created() { this.swipeaction = this.getSwipeAction()...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js
JavaScript
unknown
1,536
const MIN_DISTANCE = 10; export default { showWatch(newVal, oldVal, ownerInstance, instance, self) { var state = self.state var $el = ownerInstance.$el || ownerInstance.$vm && ownerInstance.$vm.$el if (!$el) return this.getDom(instance, ownerInstance, self) if (newVal && newVal !== 'none') { this.openStat...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/render.js
JavaScript
unknown
6,990
<template> <!-- 在微信小程序 app vue端 h5 使用wxs 实现--> <!-- #ifdef APP-VUE || MP-WEIXIN || H5 --> <view class="uni-swipe"> <!-- #ifdef MP-WEIXIN || VUE3 --> <view class="uni-swipe_box" :change:prop="wxsswipe.showWatch" :prop="is_show" :data-threshold="threshold" :data-disabled="disabled" @touchstart="wxsswipe.touchs...
2202_75391616/ui
uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue
Vue
unknown
10,479
<template> <view class="uni-swiper__warp"> <slot /> <view v-if="mode === 'default'" :style="{'bottom':dots.bottom + 'px'}" class="uni-swiper__dots-box" key='default'> <view v-for="(item,index) in info" @click="clickItem(index)" :style="{ 'width': (index === current? dots.width*2:dots.width ) + 'px','hei...
2202_75391616/ui
uni_modules/uni-swiper-dot/components/uni-swiper-dot/uni-swiper-dot.vue
Vue
unknown
6,379
<template> <view class="uni-table-scroll" :class="{ 'table--border': border, 'border-none': !noData }"> <!-- #ifdef H5 --> <table class="uni-table" border="0" cellpadding="0" cellspacing="0" :class="{ 'table--stripe': stripe }" :style="{ 'min-width': minWidth + 'px' }"> <slot></slot> <tr v-if="noData" class=...
2202_75391616/ui
uni_modules/uni-table/components/uni-table/uni-table.vue
Vue
unknown
10,031
<template> <!-- #ifdef H5 --> <tbody> <slot></slot> </tbody> <!-- #endif --> <!-- #ifndef H5 --> <view><slot></slot></view> <!-- #endif --> </template> <script> export default { name: 'uniBody', options: { virtualHost: true }, data() { return { } }, created() {}, methods: {} } </script> <sty...
2202_75391616/ui
uni_modules/uni-table/components/uni-tbody/uni-tbody.vue
Vue
unknown
333
<template> <!-- #ifdef H5 --> <td class="uni-table-td" :rowspan="rowspan" :colspan="colspan" :class="{'table--border':border}" :style="{width:width + 'px','text-align':align}"> <slot></slot> </td> <!-- #endif --> <!-- #ifndef H5 --> <!-- :class="{'table--border':border}" --> <view class="uni-table-td" :class=...
2202_75391616/ui
uni_modules/uni-table/components/uni-td/uni-td.vue
Vue
unknown
1,801
<template> <view class="uni-filter-dropdown"> <view class="dropdown-btn" @click="onDropdown"> <view class="icon-select" :class="{active: canReset}" v-if="isSelect || isRange"></view> <view class="icon-search" :class="{active: canReset}" v-if="isSearch"> <view class="icon-search-0"></view> <view class="...
2202_75391616/ui
uni_modules/uni-table/components/uni-th/filter-dropdown.vue
Vue
unknown
10,617
<template> <!-- #ifdef H5 --> <th :rowspan="rowspan" :colspan="colspan" class="uni-table-th" :class="{ 'table--border': border }" :style="{ width: customWidth + 'px', 'text-align': align }"> <view class="uni-table-th-row"> <view class="uni-table-th-content" :style="{ 'justify-content': contentAlign }" @click="so...
2202_75391616/ui
uni_modules/uni-table/components/uni-th/uni-th.vue
Vue
unknown
6,627
<template> <!-- #ifdef H5 --> <thead class="uni-table-thead"> <tr class="uni-table-tr"> <th :rowspan="rowspan" colspan="1" class="checkbox" :class="{ 'tr-table--border': border }"> <table-checkbox :indeterminate="indeterminate" :checked="checked" @checkboxSelected="checkboxSelected"></table-checkbox> ...
2202_75391616/ui
uni_modules/uni-table/components/uni-thead/uni-thead.vue
Vue
unknown
2,728
<template> <view class="uni-table-checkbox" @click="selected"> <view v-if="!indeterminate" class="checkbox__inner" :class="{'is-checked':isChecked,'is-disable':isDisabled}"> <view class="checkbox__inner-icon"></view> </view> <view v-else class="checkbox__inner checkbox--indeterminate"> <view class="checkbo...
2202_75391616/ui
uni_modules/uni-table/components/uni-tr/table-checkbox.vue
Vue
unknown
3,382
<template> <!-- #ifdef H5 --> <tr class="uni-table-tr"> <th v-if="selection === 'selection' && ishead" class="checkbox" :class="{ 'tr-table--border': border }"> <table-checkbox :checked="checked" :indeterminate="indeterminate" :disabled="disabled" @checkboxSelected="checkboxSelected"></table-checkbox> </th...
2202_75391616/ui
uni_modules/uni-table/components/uni-tr/uni-tr.vue
Vue
unknown
4,344
import en from './en.json' import es from './es.json' import fr from './fr.json' import zhHans from './zh-Hans.json' import zhHant from './zh-Hant.json' export default { en, es, fr, 'zh-Hans': zhHans, 'zh-Hant': zhHant }
2202_75391616/ui
uni_modules/uni-table/i18n/index.js
JavaScript
unknown
226
<template> <text class="uni-tag" v-if="text" :class="classes" :style="customStyle" @click="onClick">{{text}}</text> </template> <script> /** * Tag 标签 * @description 用于展示1个或多个文字标签,可点击切换选中、不选中的状态 * @tutorial https://ext.dcloud.net.cn/plugin?id=35 * @property {String} text 标签内容 * @property {String} size = [de...
2202_75391616/ui
uni_modules/uni-tag/components/uni-tag/uni-tag.vue
Vue
unknown
4,950
<template> <view> 测试插件 </view> </template> <script> export default { data() { return { }; }, onLoad() { let fonts = [] let obj = {} fonts.forEach(v=>{ obj[v.name] = '\\u'+v.unicode }) } } </script> <style> </style>
2202_75391616/ui
uni_modules/uni-test/components/uni-test/uni-test.vue
Vue
unknown
267
<template> <view class="uni-title__box" :style="{'align-items':textAlign}"> <text class="uni-title__base" :class="['uni-'+type]" :style="{'color':color}">{{title}}</text> </view> </template> <script> /** * Title 标题 * @description 标题,通常用于记录页面标题,使用当前组件,uni-app 如果开启统计,将会自动统计页面标题 * @tutorial https://ext.dcloud....
2202_75391616/ui
uni_modules/uni-title/components/uni-title/uni-title.vue
Vue
unknown
3,256
<template> <view class="uni-tooltip"> <slot></slot> <view v-if="content || $slots.content" class="uni-tooltip-popup" :style="initPlacement"> <slot name="content"> {{content}} </slot> </view> </view> </template> <script> /** * Tooltip 提示文字 * @description 常用于展示鼠标 hover 时的提示信息。 * @tutorial http...
2202_75391616/ui
uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue
Vue
unknown
2,044
// const defaultOption = { // duration: 300, // timingFunction: 'linear', // delay: 0, // transformOrigin: '50% 50% 0' // } // #ifdef APP-NVUE const nvueAnimation = uni.requireNativePlugin('animation') // #endif class MPAnimation { constructor(options, _this) { this.options = options // 在iOS10+QQ小程序平台下,传给原生的对象...
2202_75391616/ui
uni_modules/uni-transition/components/uni-transition/createAnimation.js
JavaScript
unknown
3,281
<template> <!-- #ifndef APP-NVUE --> <view v-show="isShow" ref="ani" :animation="animationData" :class="customClass" :style="transformStyles" @click="onClick"><slot></slot></view> <!-- #endif --> <!-- #ifdef APP-NVUE --> <view v-if="isShow" ref="ani" :animation="animationData" :class="customClass" :style="tra...
2202_75391616/ui
uni_modules/uni-transition/components/uni-transition/uni-transition.vue
Vue
unknown
6,903
<template> <view>占位组件,请勿使用</view> </template> <script> </script> <style> </style>
2202_75391616/ui
uni_modules/uni-ui/components/uni-ui/uni-ui.vue
Vue
unknown
101
package njust.dzh.ordersystem; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will...
2202_75383424/ordersystem
ExampleInstrumentedTest.java
Java
unknown
781
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="keywords" content="文件,文件扩展名,查询,文件扩展,扩展,扩展名,文件名,工具,查询工具,文件扩展名查询工具,扩展名工具,扩展工具"> <title>文件扩展名查询工具</title> <style> body { font-family: 'Segoe UI', sans-serif; max-width: 800px; ...
2301_76221273/exse
index.html
HTML
apache-2.0
109,719
<!DOCTYPE html> <html> <head> <meta name="keywords" content="心流,人间" /> <meta name="description" content="过度探究精神世界可能带来危险,一旦越过某个实际的界限,人生就可能滑向虚无,因此人们应该热爱某些事物,以便在世间有所牵挂,形成一种拉力,将你留在世界中。"/> <title>《在人间》</title> </head> <body>这种世界只有一种成功,就是能用自己喜欢的方式度过自己的一生。从玄学的角度说,并不是说你想做什么就做什么,而是你知道一切都是剧情的安排,并愿意全然的去接受剧情体验剧情。你不会去抗拒...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-26-day01/day01.html
HTML
unknown
1,156
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>周周帅哥6</title> </head> <body> </body> </html>
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-26-day01/hello.html
HTML
unknown
268
! <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="keywords" content="zzzzzzzz,xxxx"/> <meta name="description" content="zxxxzxzxxzxz" /> <title>daaaaaaaa</title> </head> <body> zzzzzzzzzzzasd </body> </html>
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-26-day01/text.html
HTML
unknown
282
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <meta name="新闻" content="周鑫"/> <meta descriptions="zxzxzx" content="zxxzzx"/> </head> <body> <h1>广袤乡村气象新(坚定信心 开局起步)</h1> <hr> <div>2023年02月19日 08:24 <strong><em><ins>人民日报</ins></em></strong></div> <...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-27-day02/news.html
HTML
unknown
3,169
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta chaset="UTF-8"/> <meta name="新闻" content="新闻"/> <meta decripton="新闻" content="新闻"/> <title>新闻首页</title> </head> <body> <h2>新闻首页</h2> <dl> <dt><a href="http://www.baidu.com" target="...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-27-day02/news2/index.html
HTML
unknown
1,613
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta name="大数据" content="大数据"/> <meta description="大数据" content="大数据"/> <title>新闻详情</title> </head> <body> <h1>大数据看奋进的中国节奏</h1> <div id="1"> <p><strong>ChatGPT</strong>从<ins>2022年底</ins>火到现在,在全球范围内掀起热潮,风...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-27-day02/news2/news2.html
HTML
unknown
5,999
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta name="大数据" content="大数据"/> <meta description="大数据" content="大数据"/> <title>新闻详情</title> <link rel="stylesheet" href="https://csdn-z.oss-cn-shanghai.aliyuncs.com/a.css"> </head> <body> <iframe class="g" frameborder="no" b...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-27-day02/news2.html
HTML
unknown
532
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8>"> <meta name="biaodang" content="表单"> <meta description="biaodnag" content="表单"> <title>注册账号</title> </head> <body> <form align="center" action="http://www.baidu.com" target="_blank" method="get" name="注...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-28-day03/biaodang.html
HTML
unknown
3,259
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="biaodang" content="bd"> <meta description="bg" content="bd"> </head> <body> <table align="center" width="400"> <caption>注册账号</caption> <tbody> <tr> ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-28-day03/biaoge+biaodang.html
HTML
unknown
3,634
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta chaset="UTF-8"> <meta name="成绩单" content="成绩单"> <meta description="成绩单" content="成绩单"> <title>学生考试成绩单</title> </head> <body> <table align="center" border="1" cellspacing="0"> <caption>学生考试成绩单</caption> ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-28-day03/table-2.html
HTML
unknown
1,572
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta chaset="UTF-8"> <meta name="表格" content="表格"> <meta description="表格" content="表格"> <title>学生信息</title> </head> <body> <table align="center" border="1" cellspacing="0"> <caption>学生成绩信息表格</caption> ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-28-day03/table1.html
HTML
unknown
1,256
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="首页" content="首页"> <meta description="首页" content="首页"> <title>新闻首页</title> <style> h2 { font-size : 40px; } a { font-size : 30px; ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-29-day04/page/index.html
HTML
unknown
1,948
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta chaset="UTF-8"> <meta name="新闻" content="新闻"> <meta description="新闻" content="新闻"> <style> * { font-size: 22px; } h1 { font-weight: lighter; font-size:...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-29-day04/page/news.html
HTML
unknown
6,630
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="首页" content="首页"> <meta description="首页" content="首页"> <title>新闻详情</title> <style> #datetime { font-size:16px; color:#a6a6a6; } .t...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-30-day05/anli1/index.html
HTML
unknown
3,497
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta cahrset="UTF-8"> <meta name="新闻" content="新闻"> <meta description="新闻" content="新闻"> <title>新闻</title> <style> .text-center{ text-align:center; } .title { font-...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-3-30-day05/anli2/news.html
HTML
unknown
4,322
.text-center { text-align:center; font-size: 30px; color: red; }
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-1-day06/test.css
CSS
unknown
76
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="1" content="1"> <meta description="1" content="1"> <title>test</title> <style> .one{ font-size: 20px; line-height: 1.5; } .one>p { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-1-day06/test1.html
HTML
unknown
723
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="测试" content="测试"> <meta description="测试" content="测试"> <title>测试</title> <link rel="stylesheet" href="./test.css"> <style> .text-right{ text-align:right; ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-1-day06/test2.html
HTML
unknown
830
<!DOCTYPE html> <htm> <head> <meta charset="UTF-8"> <meta name="测试" content="测试"> <meta description="测试" content="测试"> <title>测试</title> <style> div { color:green !important } .p-color { color: blue; ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-1-day06/test3.html
HTML
unknown
535
* { margin: 0; padding: 0; } body { font-family: "Microsoft YaHei", "Heiti SC", tahoma, arial, "Hiragino Sans GB", "宋体", sans-serif; } a { color: white; text-decoration: none; } ul { list-style: none; } .auto-center { width: 1000px; margin-left: auto; margin-right: auto; } .full...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-10-day13/css/common.css
CSS
unknown
502
.bg-backward { width: 60px; height: 60px; background: url('../images/css_sprites.png') -187px -10px; } .bg-cart { width: 25px; height: 25px; background: url('../images/css_sprites.png') -10px -183px; } .bg-envelope { width: 26px; height: 20px; background: url('../images/css_sprites.png') -...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-10-day13/css/sprites.css
CSS
unknown
1,783
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="keywords" content="商城首页"> <meta name="description" content="商城首页"> <title>商城首页</title> <link rel="stylesheet" href="./css/common.css"> <link rel="stylesheet" href="./css/sprites.css"> <style> ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-10-day13/index.html
HTML
unknown
6,085
<!DOCTYPE html> <html lang="zh-CN"> <meta charset="UTF-8"> <meta name="keywords" content="首页"> <meta name="description" content="首页"> <title>首页</title> <link rel="stylesheet" href="./css/common.css"> <style> .full-center { height: 100px; background-color: #35c3d9;...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-10-day13/test.html
HTML
unknown
1,234
* { margin: 0; padding: 0; } body { font-family: "Microsoft YaHei", "Heiti SC", tahoma, arial, "Hiragino Sans GB", "宋体", sans-serif; } a { color: white; text-decoration: none; } ul { list-style: none; } .auto-center { width: 1000px; margin-left: auto; margin-right: auto; } .full...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-11(12)-day14/css/common.css
CSS
unknown
676
.bg-backward { width: 60px; height: 60px; background: url('../images/css_sprites.png') -187px -10px; } .bg-cart { width: 25px; height: 25px; background: url('../images/css_sprites.png') -10px -183px; } .bg-envelope { width: 26px; height: 20px; background: url('../images/css_sprites.png') -...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-11(12)-day14/css/sprites.css
CSS
unknown
2,781
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="keywords" content="商城首页"> <meta name="description" content="商城首页"> <title>商城首页</title> <link rel="stylesheet" href="./css/common.css"> <link rel="stylesheet" href="./css/sprites.css"> <style> ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-11(12)-day14/index.html
HTML
unknown
24,874
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="首页" content="首页"> <meta description="首页" content="首页"> <title>手机列表</title> <style> * { margin: 0; padding: 0; } ul, o...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-2-day07/index.html
HTML
unknown
2,589
<!DOCTYPE html> <html> <head> <meta chaset="UTF-8"> <meta name="测试1" content="测试1"> <meta desciption="测试1" content="测试1"> <title>测试1</title> <style> div { text-align:center; font-size:50px; } .none { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-2-day07/test1.html
HTML
unknown
765
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="测试2" content="测试2"> <meta description="测试2" content="测试2"> <title>测试2</title> <style> * { padding:0; margin:0; } h1 { margin-bo...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-2-day07/test2.html
HTML
unknown
561
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="测试3" content="测试3"> <meta description="测试3" content="测试3"> <title>测试2</title> <style> * { margin: 0; padding: 0; } .father { width...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-2-day07/test3.html
HTML
unknown
857
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UFT-8"> <meta name="animal" content="animal"> <meta description="animal" content="animal"> <title>animal</title> <style> * { padding: 0; margin: 0; } .bo...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-3-day08/anli1/anli1.html
HTML
unknown
3,580
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="shouye" content="shouye"> <meta description="shouye" content="shouye"> <title>首页</title> <style> * { padding: 0; margin: 0; } ul { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-3-day08/anli2.html
HTML
unknown
2,737
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="首页" content="首页"> <meta description="首页" content="首页"> <title>首页</title> <style> * { padding: 0; margin: 0; } .auto-center { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-4-day09/anli1.html
HTML
unknown
3,786
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>定位</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } ul { list-style: none; } body { font: bolder 25px "Microsoft YaHei","Heiti S...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-5-day10/anli1.html
HTML
unknown
6,721
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="首页" content="首页"> <meta description="首页" content="首页"> <title>首页</title> <style> * { padding: 0; margin: 0; } .auto-center { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-5-day10/anli2.html
HTML
unknown
1,786
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>背景</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } ul { list-style: none; } body { font: bolder 25px "Microsoft YaHei","Heiti S...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-6-day11/anli1.html
HTML
unknown
8,327
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="shouye" content="shouye"> <meta description="shouye" content="shouye"> <title>首页</title> <style> * { padding: 0; margin: 0; } ol { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-6-day11/anli2.html
HTML
unknown
3,166
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="三角形" content="三角形"> <meta description="三角形" content="三角形"> <title>三角形</title> <style> .btn { position: relative; width: 100px; height: 50p...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli1.html
HTML
unknown
1,571
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="图片" content="图片"> <meta description="图片" content="图片"> <title>图片</title> <style> * { margin: 0; padding: 0; } div { ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli2.html
HTML
unknown
1,034
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="计数器" content="计数器"> <meta description="计数器" content="计数器"> <title>计数器</title> <style> * { margin: 0; padding: 0; } ul { list-st...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli3.html
HTML
unknown
2,103
/* Logo 字体 */ @font-face { font-family: "iconfont logo"; src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli4/font_4500581_ib98uqz2c6/demo.css
CSS
unknown
8,429
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>iconfont Demo</title> <link rel="shortcut icon" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0zuCC7osS_!!6000000001644-55-tps-83-82.svg" type="image/x-icon"/> <link rel="icon" type="image/svg+xml" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli4/font_4500581_ib98uqz2c6/demo_index.html
HTML
unknown
10,717
@font-face { font-family: "iconfont"; /* Project id 4500581 */ src: url('iconfont.eot?t=1712650731738'); /* IE9 */ src: url('iconfont.eot?t=1712650731738#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('iconfont.woff2?t=1712650731738') format('woff2'), url('iconfont.woff?t=1712650731738') for...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli4/font_4500581_ib98uqz2c6/iconfont.css
CSS
unknown
817
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="字体图标" content="字体图标"> <meta description="字体图标" content="字体图标"> <title>字体图标</title> <link rel="stylesheet" href="./iconfont/iconfont.css"> <style> * { padding: 0; ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli4.html
HTML
unknown
1,260
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="字体图标" content="字体图标"> <meta description="字体图标" content="字体图标"> <title>字体图标</title> <link rel="stylesheet" href="./iconfont/iconfont.css"> <style> * { padding: 0; ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/anli5.html
HTML
unknown
1,835
/* Logo 字体 */ @font-face { font-family: "iconfont logo"; src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/iconfont/font_4500581_o4jntno2iqk/demo.css
CSS
unknown
8,429
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>iconfont Demo</title> <link rel="shortcut icon" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0zuCC7osS_!!6000000001644-55-tps-83-82.svg" type="image/x-icon"/> <link rel="icon" type="image/svg+xml" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/iconfont/font_4500581_o4jntno2iqk/demo_index.html
HTML
unknown
11,497
@font-face { font-family: "iconfont"; /* Project id 4500581 */ src: url('iconfont.eot?t=1712655513151'); /* IE9 */ src: url('iconfont.eot?t=1712655513151#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('iconfont.woff2?t=1712655513151') format('woff2'), url('iconfont.woff?t=1712655513151') for...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/iconfont/font_4500581_o4jntno2iqk/iconfont.css
CSS
unknown
862
@font-face { font-family: "MyIconfont"; /* Project id 4500581 */ src: url('iconfont.eot?t=1712650731738'); /* IE9 */ src: url('iconfont.eot?t=1712650731738#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('iconfont.woff2?t=1712650731738') format('woff2'), url('iconfont.woff?t=1712650731738') forma...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-4-8-day12/iconfont/iconfont.css
CSS
unknown
892
.icon-cart { width: 25px; height: 25px; background: url('../images/css_sprites.png') -10px -10px; } .icon-dribble { width: 20px; height: 21px; background: url('../images/css_sprites.png') -123px -50px; } .icon-envelope { width: 26px; height: 20px; background: url('../images/css_sprites.png') -...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-21-day15/css/icon.css
CSS
unknown
1,342
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="keywords" content="首页"> <meta name="description" content="首页"> <title>flex容器练习</title> <link rel="stylesheet" href="./css/icon.css"> <style> *{ margin: 0; padding: 0; } u...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-21-day15/index.html
HTML
unknown
6,232
.icon { background-image: url('../images/ctrip.png'); /* background-size: 104px; */ background-repeat: no-repeat; } /* 酒店 */ .icon-hotel { width: 86px; height: 86px; /* background-position: 0 -127px; */ background-position: 0 -250px; } /* 风景名胜 */ .icon-scenic{ width: 86px; height: 86...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-22-day16/css/icon2.css
CSS
unknown
572
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="keywords" content="酒店"> <meta name="description" content="酒店"> <title>酒店</title> <link rel="stylesheet" href="./css/icon2.css"> <style> * { margin: 0; padding: 0; } a {...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-22-day16/demo.html
HTML
unknown
4,699
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta> <title>Document</title> <style> .flex { display: flex; width: 200px; height: 100px; } .left { flex: 3 2 50px; background: red; } .right { flex: 2 1 20px; background...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-22-day16/test.html
HTML
unknown
483
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="keywords" content="淘宝"> <meta name="description" content="淘宝"> <title>淘宝</title> <style> *{ margin: 0; padding: 0; } a{ color: blue; text-decoration: ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-23-day17/demo.html
HTML
unknown
1,964
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta> <title>圆角</title> <style> * { margin: 0; padding: 0; } .box { background-color: yellow; width: 100px; height: 100px; margin: 30px auto 0;...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-24-day18/CSS3-rounded-corners.html
HTML
unknown
699
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin: 0; padding: 0; } .box { width: 100px; color: hsl(333, 0%, 0%); margin: 100px auto 100px; } .box p:first-child{...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-24-day18/CSS3-text.html
HTML
unknown
1,451
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> form { border: 1px solid red; padding: 20px; } .form-row { width: 300px; border: 1px solid green; } .form-row>input { widt...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-24-day18/calc.html
HTML
unknown
579
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin: 0; padding: 0; } .box { width: 1000px; margin: 30px auto 0; border: 1px solid black; display: flex; ...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-24-day18/calc2.html
HTML
unknown
729
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin: 0; padding: 0; } .box { width: 500px; height: 200px; margin: 30px auto 0; border: 1px solid black; bac...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-24-day18/gradients.html
HTML
unknown
1,570
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin: 0; padding: 0; } :root {/*:root相当于html标签选择器*/ --width: 500px; --family: "华文楷体","Heiti SC",tahoma,arial,"Hiragino Sans GB","\5B8B\4F53",san...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-24-day18/var.html
HTML
unknown
863
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>零食</title> </head> <style> *{ margin: 0; padding: 0; } ul{ list-style: none; } :root{ --width:1000px; } .box{ width: var(--width); margin: 30px auto 0; b...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-25-day19/food.html
HTML
unknown
5,031
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>坦克</title> </head> <style> *{ margin: 0; padding: 0; } .box{ position: relative; width: 1000px; height:400px; margin: 30px auto 0; border: 1px solid black; } div[...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-25-day19/tank.html
HTML
unknown
2,597
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .flex { display: flex; } .box1 { width: 100px; height: 100px; back...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-25-day19/test.html
HTML
unknown
658
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>骰子</title> <style> *{ margin: 0; padding: 0; } .box{ display: flex; justify-content: center; align-items: center; width: 500px; height:500px; margin:30px auto 0;...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-26-day20/dice.html
HTML
unknown
1,830
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>太阳</title> <style> * { margin: 0; padding: 0; } .box { position: relative; width: 500px; height: 500px; margin: 30px auto 0; backgroun...
2201_75539691/qd-project-shizhibo
第一阶段:HTML和CSS3/2024-7-27-day21/demo1.html
HTML
unknown
5,581