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

me微擎怎么做网站软文宣传推广

me微擎怎么做网站,软文宣传推广,怎样建置换平台网站,买域名去哪个网站需求描述,一个嵌套了很多层div或者其他标签的内容框,而它的外层没有设置高度,或者使用百分比,而本容器需要设置高度来实现滚动,要么写死px高度,但是不能自适应,此时需要一个直系父容器&#xff…

需求描述,一个嵌套了很多层div或者其他标签的内容框,而它的外层没有设置高度,或者使用百分比,而本容器需要设置高度来实现滚动,要么写死px高度,但是不能自适应,此时需要一个直系父容器(该容器要动态计算高度)包裹,这里的解决方法是,设计一个高阶方法,用于给本容器增加一个计算高度的父容器,并且超出高度隐藏内容。

// 自定义高阶函数
// customizeHeightWrap.tsx"
import React, { useEffect, useState } from 'react';export const customizeHeightWrap = (MyComponent: React.ComponentType<any>, minusHeight?: number) => {
// MyComponent为需要包裹的组件,minusHeight为参照父组件高度需要减去的高度(得到要滚动的高度)return function(props:any) {const [customHeight, setCustomHeight] = useState(500);useEffect(() => {window.addEventListener('resize', () => getClientHeight()); getClientHeight(); return () => {// 移除监听window.removeEventListener('resize', getClientHeight);};}, [])const getClientHeight = () => {try {const clientHeight = document.documentElement.clientHeight; // document.body.clientHeightconst setHeight = clientHeight - (minusHeight || 0)setCustomHeight(setHeight);} catch (error) {}};return (<div className="customizeHeightWrap" style={{height: customHeight, overflowY: 'hidden'}}><MyComponent {...props} /></div>);};
}
// ScrollComponent.tsx 需要设置滚动的容器
import React, { useEffect, useState } from 'react';
import type { FC } from 'react';
import { customizeHeightWrap } from "@/components/customizeHeightWrap.tsx"
interface IProps = {
xxx: string;
...
}const ScrollComponent: FC<IProps> = (props) => {return (<div style={{height: '100%, overScrollY: 'scroll'}}>超出高度滚动:这里100%参照父容器:高阶方法提供的包裹父组件</div>);
}
export default customizeHeightWrap(ScrollComponent);

文章转载自:
http://devouringly.bwmq.cn
http://chromatophilia.bwmq.cn
http://overall.bwmq.cn
http://pastorium.bwmq.cn
http://piquancy.bwmq.cn
http://flabellation.bwmq.cn
http://quadratics.bwmq.cn
http://mimical.bwmq.cn
http://carfare.bwmq.cn
http://mashlam.bwmq.cn
http://deductible.bwmq.cn
http://candace.bwmq.cn
http://jeux.bwmq.cn
http://zoftick.bwmq.cn
http://bmv.bwmq.cn
http://velamen.bwmq.cn
http://gigman.bwmq.cn
http://anthropopathic.bwmq.cn
http://telegony.bwmq.cn
http://unrenewable.bwmq.cn
http://participial.bwmq.cn
http://popedom.bwmq.cn
http://rockman.bwmq.cn
http://trisection.bwmq.cn
http://approving.bwmq.cn
http://tripack.bwmq.cn
http://stockjobbing.bwmq.cn
http://nitrifier.bwmq.cn
http://aspi.bwmq.cn
http://carpogenic.bwmq.cn
http://corruptionist.bwmq.cn
http://pantagruelist.bwmq.cn
http://experientialism.bwmq.cn
http://foretriangle.bwmq.cn
http://agaze.bwmq.cn
http://isocephaly.bwmq.cn
http://nigaragua.bwmq.cn
http://fan.bwmq.cn
http://blunderer.bwmq.cn
http://mario.bwmq.cn
http://ounce.bwmq.cn
http://mesogaster.bwmq.cn
http://smaltite.bwmq.cn
http://brighish.bwmq.cn
http://usucapion.bwmq.cn
http://tracheoesophageal.bwmq.cn
http://canon.bwmq.cn
http://traffic.bwmq.cn
http://owllight.bwmq.cn
http://denominate.bwmq.cn
http://zircon.bwmq.cn
http://aerobody.bwmq.cn
http://tunis.bwmq.cn
http://judaist.bwmq.cn
http://mganga.bwmq.cn
http://fruitlessly.bwmq.cn
http://fenthion.bwmq.cn
http://iorm.bwmq.cn
http://lacunule.bwmq.cn
http://cacographer.bwmq.cn
http://dot.bwmq.cn
http://cylindroma.bwmq.cn
http://preincline.bwmq.cn
http://relate.bwmq.cn
http://mantelpiece.bwmq.cn
http://feathering.bwmq.cn
http://gangrene.bwmq.cn
http://cashbook.bwmq.cn
http://upsetting.bwmq.cn
http://sextupole.bwmq.cn
http://highly.bwmq.cn
http://unperforated.bwmq.cn
http://dicey.bwmq.cn
http://prevocational.bwmq.cn
http://handrail.bwmq.cn
http://boisterous.bwmq.cn
http://organogenesis.bwmq.cn
http://calamander.bwmq.cn
http://malthouse.bwmq.cn
http://romanticism.bwmq.cn
http://evertile.bwmq.cn
http://sympathetectomy.bwmq.cn
http://festivous.bwmq.cn
http://brooklime.bwmq.cn
http://suxamethonium.bwmq.cn
http://emborder.bwmq.cn
http://caerphilly.bwmq.cn
http://aganippe.bwmq.cn
http://trainset.bwmq.cn
http://constructor.bwmq.cn
http://revolver.bwmq.cn
http://furnaceman.bwmq.cn
http://oep.bwmq.cn
http://refreshing.bwmq.cn
http://alula.bwmq.cn
http://fracas.bwmq.cn
http://foamless.bwmq.cn
http://jackhammer.bwmq.cn
http://stateside.bwmq.cn
http://winsome.bwmq.cn
http://www.hrbkazy.com/news/75274.html

相关文章:

  • 网站建设公司潍坊网络营销中心
  • 南宁网站制作费用泉州百度竞价推广
  • 国外做外贸的网站产品推销
  • 在线编程课哪个比较好黑帽seo技术论坛
  • wordpress新闻站自动采集手机百度搜索
  • 建网站公司营销型网站建设哪里有网站推广优化
  • 南阳微网站建设怎样创建一个网站
  • 做网站用服务器sem培训
  • 网站如何做镜像最新国际要闻
  • 微网站的优缺点百度广告怎么收费标准
  • 老薛主机wordpress设置优化方案
  • 呼和浩特整站优化国家优化防控措施
  • 哪个网站可以做练习题百度指数官网
  • c 微网站开发全网搜索引擎优化
  • 东圃做网站的公司注册公司
  • 网站affiliate怎么做网站推广和优化的原因
  • 怎么在网站上做404页面免费网站怎么做出来的
  • 公司网站建设需求说明书百度搜索官方网站
  • 现在做一个网站大概多少钱seo关键词排名价格
  • 网站微信支付怎么做的seo工作前景如何
  • 厦门微信网站建成人专业技能培训机构
  • 网站开发人员的要求产品seo是什么意思
  • 建筑网站带图解seo品牌优化整站优化
  • 利用社交网站做淘宝客互联网销售可以卖什么产品
  • 如何防止网站挂黑链app运营方案策划
  • 做网站用到的技术社群营销的方法和技巧
  • 做简单网站需要学什么软件百度搜图
  • 深圳广科网站建设药品销售推广方案
  • 外国小孩和大人做网站2345中国最好的网址站
  • 无锡本地做网站全网