网站建设资讯

NEWS

网站建设资讯

html5制作邀请函的方法是什么

小编给大家分享一下html5制作邀请函的方法是什么,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!

成都创新互联公司2013年至今,是专业互联网技术服务公司,拥有项目成都网站建设、网站设计网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元甘井子做网站,已为上家服务,为甘井子各地企业和个人服务,联系电话:18980820575

目的:制作这个简易的邀请函,只是为了让新手入门Web开发。

在制作页面之前,我们先来看看整个邀请函的整体面貌。

html5制作邀请函的方法是什么

一、首先编写HTML代码




   
   邀请函 
  
 
  
    

hello world

    

欢迎来到虚拟世界,在这里发挥你的想象力,探索无限的可能。

    点击进入   

说明:

:这形如一个对文档的声明。

标签:代表了对html的开始,代表着html的结束。

标签:它包含了对html5页面各种属性,配置信息的描述。因此在某种程度上可以视为一张“身份证”。

标签:使用标签的charset来加以设置,将其字符编码指定为UTF-8;UTF-8这是一种通用编码形式,又被称为“万国码”。

标签:即页面的标题,显示在浏览器器的菜单栏上。</p><p><body> 标签:包含了所有要呈现给浏览者的内容信息。</p><p><div>  标签:这是一个常见的块级元素,相当于一个容器,它经常用来div+css布局。在这里我们用他来调整页面的位置。</p><p><h2>   标签:这是一个标题,他有1~6六个级别。</p><p><p>    标签:这表示一个段落。</p><p><a>    标签:这是一个链接。</p><p><strong>二、页面的美化:CSS</strong></p><p>1、给页面添加背景图片:</p><pre>html,body{ height: 100%; }body { background: url(images/1.jpg) center center; background-size: cover; }</pre><p>我们在给网页添加背景图片的时候,我们选取的背景图片可能像素比较大,不适应我们的浏览器窗口;所以我们给body的background属性在横向和纵向两个方向上居中(center),由于浏览器默认是没有给予body高度属性的,所以要给body和body的父级(html)设置height:100%属性。在body设置属性background-size:cover;实现背景图片自适应充满全屏。</p><p>2、为网页添加字体的样式</p><pre>html,body{ height: 100%; font-family: sans-serif; color: #801449; }</pre><p>font-family:属性可以改变字体。</p><p>color:可以改变字体的颜色,由于css具有继承机制,所以后续的元素都有这一属性。</p><p>3、调整邀请函内容区域位置。</p><pre>body { background: url(images/1.jpg) center center; background-size: cover; margin: 0; padding: 0; position: relative; }#container { width: 100%; text-align: center; position: absolute; top: 50%; transform: translateY(-50%); }</pre><p>首先,我们使用margin: 0;padding: 0;这是一个很常见的作法,能够清楚浏览器对页面元素预设的一些默认边距值,使得css自主控制更加精确。</p><p>这里我们使用id选择器(#+id名),我们设置其宽度100%;利用text-ailgn:center,让其文本水平居中。</p><p>那么如何实现竖直剧中呢? 这里就用到了定位:我们要控制container的top属性,这要建立在绝对定位的前提下,而要使得container绝对定位,就要使他的父级(body)设置为相对  定位。 之后我们利用属性,让top距顶50%。</p><p>现在还没有结束,我们可以利用html5的transform属性,设置translateY(-50%);即向上移动其高度的一半。</p><p>这样整个container将会显示在页面的正中央。</p><p>4、为其内容标签设置一些文字字体与字号。</p><pre>h2 { font-size: 54px; text-transform: uppercase; margin-bottom: 20px; }p { font-size: 21px; margin-bottom: 40px; }a { font-size: 18px; color: #8f3c3c; }</pre><p>说明:</p><p>font-size :设置字体的大小。</p><p>text-transform:uppercase :是文本都转化为大写字母。</p><p>margin-bottom:20px  :这里牵扯到盒模型,其意思是下边框有20px的宽度。</p><p>5、制作邀请函按钮。</p><pre>a { font-size: 18px; color: #8f3c3c; border: 1px solid #c66c6c; border-radius: 3px; padding: 10px 100px; text-decoration: none; }</pre><p>border:为其设置边框,该属性的三个参数分别代表了边框宽1px,实线,颜色。</p><p>border-radius: 为其边框设置了3px的圆角。</p><p>padding:上下内边距为10px;左右内边距为100px。</p><p>text-decoration:none : 这样可以去掉链接的下划线。</p><p><strong> 整体css文件:<em> </em></strong></p><pre> html,body{ height: 100%; font-family: sans-serif; color: #801449; } body { background: url(images/1.jpg) center center; background-size: cover; margin: 0; padding: 0; position: relative; } #container { width: 100%; text-align: center; position: absolute; top: 50%; transform: translateY(-50%); } h2 { font-size: 54px; text-transform: uppercase; margin-bottom: 20px; } p { font-size: 21px; margin-bottom: 40px; } a { font-size: 18px; color: #8f3c3c; border: 1px solid #c66c6c; border-radius: 3px; padding: 10px 100px; text-decoration: none; }</pre><p><strong>三、为页面创建交互</strong></p><pre>var btn = document.getElementById('button'); btn.onclick = function(e) { //preventDefault() 可以阻止单机链接后浏览器默认的URL跳转。 e.preventDefault(); btn.innerHTML = "正在进入..." btn.style.border = "0"; }</pre><p>首先我们为<a>链接添加id为button。</p><p>利用document.getElementById(id名)来获取a链接,并将其赋给变量btn。</p><p>然后为btn添加单机属性调用执行函数。</p><pre> e.preventDefault(); //将阻止其默认的链接跳转。 btn.innerHTML = "正在进入..." //改变文本内容。 btn.style.border = "0";</pre><p>看完了这篇文章,相信你对html5制作邀请函的方法是什么有了一定的了解,想了解更多相关知识,欢迎关注创新互联行业资讯频道,感谢各位的阅读!</p> <br> 网站名称:html5制作邀请函的方法是什么 <br> 分享链接:<a href="http://cdweb.net/article/jpgced.html">http://cdweb.net/article/jpgced.html</a> </div> </div> <div class="other"> <h3>其他资讯</h3> <ul> <li> <a href="/article/gphei.html">怎么在Android中利用NestedScrolling实现嵌套滚动-创新互联</a> </li><li> <a href="/article/gpheg.html">重构迁移到Serverless(Lambda)-创新互联</a> </li><li> <a href="/article/gphsj.html">在Java项目中如何对进制进行转换-创新互联</a> </li><li> <a href="/article/gphee.html">Vue解析剪切板图片并实现发送功能-创新互联</a> </li><li> <a href="/article/gphed.html">jquery中如何设置select选中值-创新互联</a> </li> </ul> </div> </div> </div> <footer> <div class="footop"> <div class="wrap"> <div class="bottomrpw"> <div class="erp arp"> <dl> <dt>ADDRESS</dt> <dd class="address"> <i class="icon"></i> <span class="word">成都市青羊区锦天国际1号楼1002室</span> </dd> </dl> </div> <div class="erp arp"> <dl> <dt>TEL</dt> <dd class="phonum"> <i class="icon"></i> <span class="word en"> <a href="tel:18980820575">18980820575</a> </span> </dd> </dl> </div> <div class="erp crp"> <dl> <dt>OTHER</dt> <dd> <a class="word get-quote">获得报价与方案</a> </dd> <dd> <a href="#" target="_blank" rel='nofollow' class="word" title="付款方式">付款方式</a> </dd> </dl> </div> <div class="erp code-rp"> <dl> <dt>Wechat</dt> <dd class="code-wrap"> <span class="code"> <img src="/Public/Home/images/qr-code.jpg" alt="快上网微信公众号" /> </span> </dd> </dl> </div> </div> </div> </div> <div class="footerbot"> <div class="friendlinks"> <div class="wrap"> <ul class="rpl"> <li><a href="https://www.cdxwcx.com/wangzhan/mbshangcheng.html" title="模板商城网站" target="_blank">模板商城网站</a></li><li><a href="http://chengdu.cdweb.net/" title="新网创想" target="_blank">新网创想</a></li><li><a href="http://www.abwzjs.com/" title="阿坝网站建设" target="_blank">阿坝网站建设</a></li><li><a href="https://www.scvps.cn/" title="云服务器" target="_blank">云服务器</a></li><li><a href="http://m.cdcxhl.com/" title="成都网站设计" target="_blank">成都网站设计</a></li><li><a href="http://m.cdcxhl.cn/shop/ " title="商城网站建设公司" target="_blank">商城网站建设公司</a></li><li><a href="http://www.cxhljz.com/" title="成都做网站建设公司" target="_blank">成都做网站建设公司</a></li><li><a href="http://www.tjysf.cn/" title="郫县明安消防器材" target="_blank">郫县明安消防器材</a></li><li><a href="http://m.cdcxhl.com/" title="成都做网站" target="_blank">成都做网站</a></li><li><a href="http://seo.cdkjz.cn/wangzhan/" title="营销型网站建设" target="_blank">营销型网站建设</a></li> </ul> </div> </div> <div class="wrap"> <div class="copyright"> <span class="en">©2007-2022</span> 成都快上网科技有限公司 <span class="en">ALL RIGHTS RESERVED.</span> <a rel="nofollow" href="http://www.miitbeian.gov.cn" target="_blank">蜀ICP备19037934号</a> </div> </div> </div> </footer> <div class="fcwrap"> <ul class="rpl clearfix"> <li class="phone"> <a rel="nofollow" target="_blank" href="tel:18980820575"> <i class="icon"></i> <strong>18980820575</strong> </a> </li> <li class="qq"> <a rel="nofollow" target="_blank" href="https://wpa.qq.com/msgrd?v=1&uin=244261566&site=qq&menu=yes"> <i class="icon"></i> <strong>244261566</strong> </a> </li> <li class="back-top"> <a href="javascript:void(0)" rel="nofollow" class="back-to-top"> <i class="icon"></i> <strong>回到顶部</strong> </a> </li> </ul> </div> <!--nav--> <div class="n-Wrap"> <div class="navBar visble show"> <div class="barlogo"> <a href="/" rel="nofollow"> <img src="/Public/Home/images/logo1.png" alt="成都做网站" /> <img src="/Public/Home/images/logo2.png" alt="成都网站设计" /> </a> </div> <div class="bmenu"> <i class="bar-top"><span></span></i> <i class="bar-cen"><span></span></i> <i class="bar-bom"><span></span></i> <i class="bar-left"><span></span></i> <i class="bar-right"><span></span></i> </div> </div> <section class="fixmenu"> <div class="close-bar"> <i class="bar-left"><span></span></i> <i class="bar-right"><span></span></i> </div> <nav class="smph"> <ul> <li class="index-hrefs on"><a href="http://www.cdweb.net/"><font>首页</font></a></li> <li><a href="/about/" rel="nofollow"><font>关于快上网</font></a></li> <li><a href="/service/" rel="nofollow"><font>服务范围</font></a></li> <li><a href="/case/" rel="nofollow"><font>案例展示</font></a></li> <li><a href="/solve/" rel="nofollow"><font>解决方案</font></a></li> <li><a href="/news/" rel="nofollow"><font>建站资讯</font></a></li> <li><a href="/contact/" rel="nofollow"><font>联系快上网</font></a></li> </ul> <div class="pwrap"> <span class="label">服务热线</span> <strong class="phone"><a href="tel:18980820575">18980820575</a></strong> </div> </nav> </section> </div> <!--end nav--> <script src="/Public/Home/js/hotcss.js"></script> <script type="text/javascript" src="/Public/Home/js/su_new.js"></script> </body> </html> <script> $(".con img").each(function(){ var src = $(this).attr("src"); //获取图片地址 var str=new RegExp("http"); var result=str.test(src); if(result==false){ var url = "https://www.cdcxhl.com"+src; //绝对路径 $(this).attr("src",url); } }); window.onload=function(){ document.oncontextmenu=function(){ return false; } } </script>