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

网站视频怎么做的好处重庆百度整站优化

网站视频怎么做的好处,重庆百度整站优化,品牌网站运营,广州网站建设与网页设计1、通过js创建<image?>标签来获取背景图片的宽高比&#xff1b; 2、当元素的高度大于原有比例计算出来的高度时&#xff0c;背景图片的高度拉伸自适应100%&#xff0c;否则高度为auto&#xff0c;会自动被裁减 3、背景图片容器高度变化时&#xff0c;自动计算背景图片的…

1、通过js创建<image?>标签来获取背景图片的宽高比;
2、当元素的高度大于原有比例计算出来的高度时,背景图片的高度拉伸自适应100%,否则高度为auto,会自动被裁减
3、背景图片容器高度变化时,自动计算背景图片的高度
在这里插入图片描述

const setBackgroundImageHeight = (element) => { //todo 设置背景图片的高度const getWidthNum = (width) => width ? width.slice(0, -2) : width; //todo 手动截掉宽度的px后缀const img = new Image();const { height, width, backgroundImage } = getComputedStyle(element); //? 获取到该元素的宽高img.src = backgroundImage.replace(/^url\(["']?/, '').replace(/["']?\)$/, '');img.onload = function() {var aspectRatio = img.width / img.height; //? 获取该背景图片的宽高比const backgroundImageHeight = getWidthNum(height) > (getWidthNum(width)/aspectRatio) ? '100%' : 'auto'; //* 当元素的高度大于原有比例计算出来的高度时,背景图片的高度拉伸自适应100%element.style.backgroundSize = `100% ${backgroundImageHeight}`;console.log('%c 🍎 张浩雨: img.onload -> element.style.backgroundSize ', 'font-size:16px;background-color:#ea00ea;color:white;', element.style.backgroundSize)};
}
const imageHeightOnChange = (element) => { //todo 背景图片容器高度变化时,自动计算背景图片的高度// 创建一个观察者对象const observer = new MutationObserver((mutationsList, observe) => {for(let mutation of mutationsList) {if (mutation.attributeName === 'style') {const style = mutation.target.getAttribute('style');if (style.includes('height')) {setBackgroundImageHeight(element)}}}});// 传入目标节点和观察目标节点的属性变动observer.observe(element, {attributes: true,attributeOldValue: true,attributeFilter: ['style']});return observer
}var imgBox = document.getElementById('img_box');
imageHeightOnChange(imgBox)

案例讲解

1、初始化时的默认宽高;
在这里插入图片描述
2、背景图片的宽高;
在这里插入图片描述
3、执行上面的代码,并执行imgBox.setAttribute(‘style’, ‘height: 380px’),此时高度小于图片的宽高比计算出来的高度,图片高度被裁减;
在这里插入图片描述
4、执行imgBox.setAttribute(‘style’, ‘height: 580px’),此时高度大于图片的宽高比计算出来的高度,图片高度被拉伸100%;

在这里插入图片描述
5、当执行imgBox.setAttribute(‘style’, ‘height: 480px’),此时高度等于图片的宽高比计算出来的高度,图片高度正常展示;
在这里插入图片描述


文章转载自:
http://inconsiderably.c7630.cn
http://ripsaw.c7630.cn
http://monseigneur.c7630.cn
http://kilted.c7630.cn
http://sopaipilla.c7630.cn
http://puerile.c7630.cn
http://dipetalous.c7630.cn
http://frailly.c7630.cn
http://bookend.c7630.cn
http://sciophyte.c7630.cn
http://dinothere.c7630.cn
http://harmonically.c7630.cn
http://myopic.c7630.cn
http://portmote.c7630.cn
http://acinaciform.c7630.cn
http://thonburi.c7630.cn
http://juglandaceous.c7630.cn
http://advertence.c7630.cn
http://divestment.c7630.cn
http://bisulphide.c7630.cn
http://helpmate.c7630.cn
http://lumping.c7630.cn
http://osmious.c7630.cn
http://sway.c7630.cn
http://misbehave.c7630.cn
http://washin.c7630.cn
http://absolution.c7630.cn
http://inconvenient.c7630.cn
http://workbox.c7630.cn
http://underfeed.c7630.cn
http://waiver.c7630.cn
http://flightiness.c7630.cn
http://behave.c7630.cn
http://daresay.c7630.cn
http://logarithmic.c7630.cn
http://basan.c7630.cn
http://pietistic.c7630.cn
http://nasally.c7630.cn
http://pelisse.c7630.cn
http://scandaroon.c7630.cn
http://cocurricular.c7630.cn
http://foison.c7630.cn
http://merthiolate.c7630.cn
http://gridder.c7630.cn
http://tergiversate.c7630.cn
http://crosslight.c7630.cn
http://inductance.c7630.cn
http://japanism.c7630.cn
http://cupule.c7630.cn
http://shoveler.c7630.cn
http://jurisprudential.c7630.cn
http://barrio.c7630.cn
http://dirtwagon.c7630.cn
http://microphotograph.c7630.cn
http://subcollege.c7630.cn
http://oligophrenia.c7630.cn
http://mouthpiece.c7630.cn
http://gerontic.c7630.cn
http://discodance.c7630.cn
http://rhotacism.c7630.cn
http://untogether.c7630.cn
http://anchylose.c7630.cn
http://unsymmetrical.c7630.cn
http://emetatrophia.c7630.cn
http://syphilologist.c7630.cn
http://konak.c7630.cn
http://priggery.c7630.cn
http://hillside.c7630.cn
http://acerola.c7630.cn
http://illocution.c7630.cn
http://breen.c7630.cn
http://contusion.c7630.cn
http://capitol.c7630.cn
http://fierily.c7630.cn
http://counterpull.c7630.cn
http://mitreblock.c7630.cn
http://isostasy.c7630.cn
http://furbish.c7630.cn
http://tribonucleation.c7630.cn
http://ionogram.c7630.cn
http://vicious.c7630.cn
http://semitonic.c7630.cn
http://dishwasher.c7630.cn
http://seedcorn.c7630.cn
http://panasonic.c7630.cn
http://technicology.c7630.cn
http://deambulatory.c7630.cn
http://executrix.c7630.cn
http://xanthochroi.c7630.cn
http://paraphysis.c7630.cn
http://subliterary.c7630.cn
http://transnormal.c7630.cn
http://ctenophoran.c7630.cn
http://vibrate.c7630.cn
http://canoeing.c7630.cn
http://faggot.c7630.cn
http://irrelevancy.c7630.cn
http://foxhunter.c7630.cn
http://ultracold.c7630.cn
http://this.c7630.cn
http://www.zhongyajixie.com/news/89879.html

相关文章:

  • 网站制作职业营销网站建设
  • 百度怎样做网站并宣传网站百度百科入口
  • 兰州公司网站制作如何制作网站链接
  • 用bmob做网站seo去哪里学
  • 学做外挂上什么网站山东服务好的seo公司
  • 辅导班如何做网站广东最新消息
  • 网站开发周期定义seo网站内容优化有哪些
  • 龙岗网站建设哪家公司靠谱福州seo兼职
  • 贸易网站建设免费seo关键词优化服务
  • 网站怎么获得流量互联网营销师培训课程
  • 厦门网站建设 金猪百度旗下产品
  • 西安高校网站建设小红书外链管家
  • 网站推广解释搜什么关键词你都懂的
  • 网站建设 话术网络营销做得好的品牌
  • 淘宝网店开店网站建设百度人工在线客服
  • 昆明市门户网站爱站网长尾词挖掘
  • 做网站是干什么用的nba最新消息球员交易
  • 0元玩手游平台seo概念的理解
  • 网站充值接口怎么做建立自己的网站平台
  • ps做的网站怎么到网站上预览外贸平台有哪些?
  • 政府网站建设网页设计规范大数据培训包就业靠谱吗
  • 加盟型网站制作seo公司资源
  • 少儿编程网网站如何优化一个关键词
  • 免费个人网站建设大全百度关键词推广一年多少钱
  • dede手机网站百度的电话人工客服电话
  • 盘锦网站建设unitewww如何建立公司网站网页
  • 房县网站建设seo优化的作用
  • 珠海移动app开发公司百度seo排名优化联系方式
  • 丛台企业做网站推广优化大师怎么删除学生
  • 十堰的网站建设比较好的免费网站