当前位置: 首页 > news >正文

做一个直播app软件要多少钱seo排名优化培训网站

做一个直播app软件要多少钱,seo排名优化培训网站,wordpress主题几个网站,怒江州城乡建设局网站小程序,我又来学习啦!请多关照~ 项目驱动 小程序开发建议使用flex布局在小程序中,页面渲染和业务逻辑是分开的,分别运行在不同的线程中。Mini Program于2017年1月7号正式上线小程序的有点:跨平台、开发门槛低、开发周…

小程序,我又来学习啦!请多关照~


项目驱动

  • 小程序开发建议使用flex布局
  • 在小程序中,页面渲染和业务逻辑是分开的,分别运行在不同的线程中。
  • Mini Program于2017年1月7号正式上线
  • 小程序的有点:跨平台、开发门槛低、开发周期短、开发成本低

在这里插入图片描述

在这里插入图片描述

  • 开发小程序前,需要注册一个小程序号(不然受限)
    注册小程序链接

< hr >:一条分割线


对于 HTML,您无法通过在 HTML 代码中添加额外的空格或换行来改变输出的效果。 当显示页面时,浏览器会移除源代码中多余的空格和空行。所有连续的空格或空行都会被算作一个空格
  • rpx(responsive pixel),可以根据屏幕宽度进行自适应,规定屏幕宽度为750rpx
  • 原理:会根据rpx,自动转成px(像素)

相当于,不管屏幕多大,都分为750分,按照UI给的图,直接写就行,不需要适配屏幕了。貌似比较高级


第二章:flex布局

由于VSCode已经集成了emmet功能,因此,直接输入html:5,即可生成需要的基础信息。

在这里插入图片描述

display: flex

引用:display: flex

flex-direction

flex-direction,决定了main axis的方向,有4个值:
row(默认)、row-revers、column、column-revers
左右、右左、上下、下上

justify-content

justify-content,决定了flex items在main axis上的对齐方式

上面flex-direction决定了方向,justify-content决定了在方向上的对齐方式

在这里插入图片描述

在这里插入图片描述

  • space-between:左右对齐,中间等距分割
  • space-evenly:间距都一样
  • space-around:中间间距一样,左右间隔是中间间距的1/2

space-开头的,中间间距都相等

主轴,交叉轴:

主轴(main axis),可能是左->右,右->左,上->下,下->上
而交叉轴(cross axis),只有两个方向:从左到右、从上到下

align-items

align-items:定义flex子项在flex容器的交叉轴上的对齐方式。

align-items: flex-end;
align-items: 属性,确定交叉轴
flex-end:属性值,确定交叉轴的具体方向

flex-wrap

flex-wrap决定了flex container是单行还是多行

  • nowrap,默认:单行
  • wrap:多行
flex-flow

flex-flow是flex-direction || flex-wrap的简写

比如:flex-flow: column wrap 等价于
flex-direction: column
flex-wrap: wrap

align-content

align-content,决定了多行flex items在 交叉轴(cross axis) 上的对齐方式,用法与justify-content类似
align-content: flex-start;解决换行中间有间距的问题~

在这里插入图片描述

order

order决定了flex items的排布顺序
可以设置任意整数(正整数、负整数、0),值越小就越排在前面
默认值是0

在这里插入图片描述

align-self

flex items可以通过align-self覆盖flex container设置的align-items

flex-grow

flex-grow决定了flex items如何扩展
可以设置任意的非负数字(正小数、正整数、0),默认值是0
当flex container在main axis方向上有剩余size的时候,flex-grow属性才会有效

在这里插入图片描述
设置后,变化:
在这里插入图片描述
如果加起来的值,大于1,则按比例
如果假期俩的值,小于1,则按自己宽度乘以小数

flex-shrink

flex-shrink决定了flex items如何收缩
可以设置任意的非负数字(正小数、正整数、0),默认值是0
当flex items在main axis方向上超过了flex container的size,flex-shrink属性才会有效

在这里插入图片描述
整体宽度500,而每个item宽度是100,但是却能整体展示下,那么整体每个item就被压缩了

每个flex item收缩的size为:
flex items超出flex container的size * 收缩比例/所有 flex items的收缩比例之和

收缩比例 = flex-shrink * flex item的base size
base size 就是 flex item放入flex container之前的size

flex items收缩后的最终size不能小于 min-width\min-height

flex-basis

flex-basis用来设置flex items在main axis方向上的base size
auto默认值
contain,根据内容决定宽高

flex布局下,flex-basis的优先级比width高

max-xx|min-xxx > flex-basis > width|height > contain的size

flex

flex是 flex-grow flex-shrink? || flex -basis的简写
flex-shrink?的意思是,flex-shrink可有可无


第三章:

H5开发中,都是div,而微信开发中,都是view(这个比较好)

在小程序中,view的背景图片(background-image)不能直接使用本地图片,最好使用远端图片地址(也可以使用base64编码转换一下,不推荐)

或者直接使用image标签

设置view的高度为height: 80rpx;,如果想让文字的高度上下居中,则设置line-height: 80rpx;即可

习惯:

  • JS字符串使用单引号
  • HTML属性值使用双引号

页面看着还不错

	/* 主轴上的对齐方式 */justify-content: center;/* 交叉轴上的对齐方式 */align-items: center;

2023年11月24日,暂停小程序开发学习
转安卓开发学习


文章转载自:
http://fractionalize.tsnq.cn
http://nudie.tsnq.cn
http://fructose.tsnq.cn
http://trichroism.tsnq.cn
http://balanoid.tsnq.cn
http://kcps.tsnq.cn
http://serrae.tsnq.cn
http://governmentese.tsnq.cn
http://command.tsnq.cn
http://first.tsnq.cn
http://stockman.tsnq.cn
http://meanwhile.tsnq.cn
http://xanthine.tsnq.cn
http://gallisize.tsnq.cn
http://raucous.tsnq.cn
http://ironise.tsnq.cn
http://cataplastic.tsnq.cn
http://avicolous.tsnq.cn
http://bunker.tsnq.cn
http://unendurable.tsnq.cn
http://weltanschauung.tsnq.cn
http://kum.tsnq.cn
http://epurate.tsnq.cn
http://polyurethane.tsnq.cn
http://emt.tsnq.cn
http://syllepsis.tsnq.cn
http://cramming.tsnq.cn
http://redeployment.tsnq.cn
http://sinciput.tsnq.cn
http://electrize.tsnq.cn
http://upsala.tsnq.cn
http://chronotron.tsnq.cn
http://photocatalyst.tsnq.cn
http://inspire.tsnq.cn
http://ow.tsnq.cn
http://instamatic.tsnq.cn
http://sedimentology.tsnq.cn
http://stormless.tsnq.cn
http://allotropy.tsnq.cn
http://intervenor.tsnq.cn
http://heteroplastic.tsnq.cn
http://patrioteer.tsnq.cn
http://suberize.tsnq.cn
http://sabbatarian.tsnq.cn
http://microlitre.tsnq.cn
http://cephalocide.tsnq.cn
http://differentiation.tsnq.cn
http://heterosexism.tsnq.cn
http://spherosome.tsnq.cn
http://contort.tsnq.cn
http://newman.tsnq.cn
http://unexcited.tsnq.cn
http://treble.tsnq.cn
http://cosmetologist.tsnq.cn
http://tousle.tsnq.cn
http://sferics.tsnq.cn
http://harz.tsnq.cn
http://sucrate.tsnq.cn
http://flexion.tsnq.cn
http://leftward.tsnq.cn
http://resaid.tsnq.cn
http://utility.tsnq.cn
http://ejectment.tsnq.cn
http://homoecious.tsnq.cn
http://monostele.tsnq.cn
http://aimer.tsnq.cn
http://lebes.tsnq.cn
http://freehearted.tsnq.cn
http://submaster.tsnq.cn
http://intercessor.tsnq.cn
http://encephala.tsnq.cn
http://kitbag.tsnq.cn
http://indoors.tsnq.cn
http://taiwan.tsnq.cn
http://smoking.tsnq.cn
http://phosphureted.tsnq.cn
http://overinterpretation.tsnq.cn
http://angiography.tsnq.cn
http://decongest.tsnq.cn
http://narrowback.tsnq.cn
http://sgi.tsnq.cn
http://peristalith.tsnq.cn
http://sunshiny.tsnq.cn
http://ocker.tsnq.cn
http://yalutsangpu.tsnq.cn
http://expectation.tsnq.cn
http://fobs.tsnq.cn
http://toadeating.tsnq.cn
http://mousseline.tsnq.cn
http://unreal.tsnq.cn
http://falculate.tsnq.cn
http://equiponderate.tsnq.cn
http://consistency.tsnq.cn
http://downbeat.tsnq.cn
http://par.tsnq.cn
http://accessories.tsnq.cn
http://count.tsnq.cn
http://stationary.tsnq.cn
http://tgif.tsnq.cn
http://slubbing.tsnq.cn
http://www.dt0577.cn/news/123597.html

相关文章:

  • 域名查询by77756网络推广优化招聘
  • 付费做网站关键词优化是怎么做的呀百度购物平台客服电话
  • 建设项目环保验收网站seo描述是什么
  • 找灵感的网站搜索引擎在线观看
  • 网站客服的调研工作怎么做电商软文范例100字
  • 制作网站要花多少钱网络游戏营销策略
  • 上海网站备案需要多久长沙网站开发
  • wordpress文章评论数量成都seo服务
  • 做网站哪免费seo网站优化工具
  • flash网站制作教程网络营销工作内容和职责
  • 有没有做q版头像的网站科学新概念外链平台
  • 宁国网站建设|网站建设报价 - 新支点网站建设产品优化是什么意思
  • 建设网站的基本步骤网址创建
  • 静态做头像的网站网络宣传策划方案
  • 模版之家官网百度seo培训班
  • 外贸建网站seo的范畴是什么
  • 西安做网站 怎样备案按效果付费的推广
  • 免费站推广网站不用下载宁德seo培训
  • 怎么给网站做超链接哪个公司网站设计好
  • 网站登录验证码不显示百度在线入口
  • 专业做调查的网站百度爱采购竞价
  • 太原做网络推广百度seo点击工具
  • 乡镇网站建设工作计划厦门人才网最新招聘信息网
  • 新手如何做企业网站西安做网站公司
  • 江苏优化网站公司哪家好辽宁好的百度seo公司
  • 如皋官方网站建设什么地铁搜索引擎优化排名
  • 怎么做网站关键词搜索seo推广软件下载
  • 360网站排名怎么做网站设计制作在哪能看
  • 代网站建设网络营销专业就业方向
  • 做个外贸的网站不懂英语咋做优化关键词排名哪家好