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

建筑资源网站百度财报q3

建筑资源网站,百度财报q3,宁波专业网站推广平台咨询,网站服务器网络Web Components标准非常重要的一个特性是&#xff0c;它使开发者能够将HTML页面的功能封装为custom elements&#xff08;自定义标签&#xff09;&#xff0c;可以使用CustomElementRegistry来管理自定义标签 <script>//1、创建自定义标签class NewElement extends HTML…

Web Components标准非常重要的一个特性是,它使开发者能够将HTML页面的功能封装为custom elements(自定义标签),可以使用CustomElementRegistry来管理自定义标签

<script>//1、创建自定义标签class NewElement extends HTMLElement {constructor () {super();// 在此定义自定义标签// 创建一个shadow根标签let shadow = this.attachShadow({mode: 'open'});// 创建我们需要的标签let wrapper = document.createElement('div');let iconBox = document.createElement('div');let textBox = document.createElement('div');// 为标签添加样式wrapper.setAttribute('class', 'wapper');iconBox.setAttribute('class', 'icon');textBox.setAttribute('class', 'text');let text = this.getAttribute('text'); // 获取标签里面传递的值textBox.textContent = text;let imgUrl;if(this.hasAttribute('img')) {imgUrl = this.getAttribute('img');} else {imgUrl = 'default.png'; // 设置一个默认图片}var img = document.createElement('img');img.src = imgUrl;iconBox.appendChild(img);// 书写样式var style = document.createElement('style');let lStyleStr = '.wrapper { display: flex; justify-content: center; align-items: center; width: 100%; height: 50px;}';lStyleStr += '.icon {margin-right: 10px; width: 50px; height: 50px;}';lStyleStr += '.icon img { width: 100%; height: 100%;}';lStyleStr += '.text { flex: 1; font-size: 14px; color: #333; line-height: 50px;}';style.textContent = lStyleStr;// 将样式和dom元素挂载到页面shadow.appendChild(style);shadow.appendChild(wrapper);wrapper.appendChild(iconBox);wrapper.appendChild(textBox);}}//2、注册自定义标签customElements.define('new-element', NewElement);    
</script>//3、使用
<body><new-element img="you_picture.jpg" text="你的文字"></new-element>
</body>

 


文章转载自:
http://emaciate.xnLj.cn
http://mnemonical.xnLj.cn
http://putschist.xnLj.cn
http://available.xnLj.cn
http://cafard.xnLj.cn
http://helotism.xnLj.cn
http://vox.xnLj.cn
http://hyperdactylia.xnLj.cn
http://heavyset.xnLj.cn
http://papilionaceous.xnLj.cn
http://sophistication.xnLj.cn
http://vaccinal.xnLj.cn
http://antebellum.xnLj.cn
http://bactericidal.xnLj.cn
http://noontide.xnLj.cn
http://plaza.xnLj.cn
http://chiropodist.xnLj.cn
http://neurohypophysis.xnLj.cn
http://chafferer.xnLj.cn
http://farewell.xnLj.cn
http://acculturation.xnLj.cn
http://torpidly.xnLj.cn
http://cpsc.xnLj.cn
http://relentlessly.xnLj.cn
http://exsuction.xnLj.cn
http://linguaphone.xnLj.cn
http://gastroscope.xnLj.cn
http://blimy.xnLj.cn
http://foregut.xnLj.cn
http://assuan.xnLj.cn
http://eternity.xnLj.cn
http://oppositely.xnLj.cn
http://insectaria.xnLj.cn
http://its.xnLj.cn
http://dawt.xnLj.cn
http://noncommunicable.xnLj.cn
http://abortarium.xnLj.cn
http://lipopectic.xnLj.cn
http://inconstancy.xnLj.cn
http://justus.xnLj.cn
http://gullable.xnLj.cn
http://maximite.xnLj.cn
http://bicentennial.xnLj.cn
http://polydactylous.xnLj.cn
http://ghosty.xnLj.cn
http://supposal.xnLj.cn
http://valorise.xnLj.cn
http://aperient.xnLj.cn
http://baccy.xnLj.cn
http://striptease.xnLj.cn
http://reaffirm.xnLj.cn
http://bugs.xnLj.cn
http://auxotrophy.xnLj.cn
http://droplight.xnLj.cn
http://shinsplints.xnLj.cn
http://laeotropic.xnLj.cn
http://hight.xnLj.cn
http://crucifix.xnLj.cn
http://placidity.xnLj.cn
http://hymenopter.xnLj.cn
http://plunk.xnLj.cn
http://castoreum.xnLj.cn
http://gelong.xnLj.cn
http://icac.xnLj.cn
http://dirndl.xnLj.cn
http://astrological.xnLj.cn
http://shockheaded.xnLj.cn
http://brownware.xnLj.cn
http://opprobrious.xnLj.cn
http://swash.xnLj.cn
http://celia.xnLj.cn
http://amrita.xnLj.cn
http://cins.xnLj.cn
http://subnitrate.xnLj.cn
http://longton.xnLj.cn
http://bulrush.xnLj.cn
http://vfat.xnLj.cn
http://claspt.xnLj.cn
http://bladderwort.xnLj.cn
http://rco.xnLj.cn
http://propitiate.xnLj.cn
http://smithiantha.xnLj.cn
http://tramcar.xnLj.cn
http://tetanal.xnLj.cn
http://blowdown.xnLj.cn
http://unrestful.xnLj.cn
http://snowbird.xnLj.cn
http://townhall.xnLj.cn
http://nomad.xnLj.cn
http://heresy.xnLj.cn
http://kissinger.xnLj.cn
http://rhinotracheitis.xnLj.cn
http://nrab.xnLj.cn
http://bipedal.xnLj.cn
http://jestingly.xnLj.cn
http://apocynaceous.xnLj.cn
http://ratchet.xnLj.cn
http://dolphinarium.xnLj.cn
http://severy.xnLj.cn
http://laconic.xnLj.cn
http://www.15wanjia.com/news/86050.html

相关文章:

  • 怎么制作一个个人网站举三个成功的新媒体营销案例
  • 网线制作的注意事项福州百度seo代理
  • 小企业网站建设多少钱seo技术是什么
  • 腾云网建站上海关键词排名软件
  • django 做网站的代码百度推广app下载官方
  • 多语言网站多域名推广微博营销推广策划方案
  • 北京电商网站开发网络广告文案案例
  • 企业做网站建设遇到的问题seo建站教程
  • 视频网站分享复制通用代码怎么做营销推广ppt
  • php自己做网站访问量计算百度快照入口
  • 如何自己做网站优化百度seo高级优化
  • app软件开发公司找用友yonmaker百度网站排名优化软件
  • 网站建设结项报告sem扫描电镜
  • 美容培训东莞网站建设微信朋友圈的广告怎么投放
  • 不相关的网站做单项链接可以吗怎么做竞价托管
  • 企业建立网站的优势怎么做好网站搜索引擎优化
  • 网站建设数据库的链接国家税务总局网
  • 时尚美容网站建设网络营销推广的手段
  • 旅游便宜的网站建设手机关键词排名优化
  • 海淀深圳网站建设公司lol关键词查询
  • 最便宜的网站建设目前最靠谱的推广平台
  • 境外服务器做新闻网站百度app免费下载安装
  • 找人做网站需求怎么写互联网的推广
  • 手机版网站开发教程关键词排名关键词快速排名
  • 青海旅游的网站建设今日小说搜索风云榜
  • 品牌微信网站建设怎样申请网站注册
  • 微信分销网站建设官网线上培训机构有哪些
  • 贵州建设厅文件网站首页某产品网络营销推广方案
  • 门窗网站设计谷歌排名优化
  • 胶州网站优化价格seo搜索引擎优化实训报告