博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
夜间模式的开启与关闭,父模板的制作
阅读量:6360 次
发布时间:2019-06-23

本文共 2728 字,大约阅读时间需要 9 分钟。

       1、夜间模式的开启与关闭

放置点击的按钮或图片。

定义开关切换函数。

onclick函数调用。

 

html代码:

    
夜晚模式 images

javascript代码:

function mySwitch() {    var obody = document.getElementById("mybody");    var oOnoff = document.getElementById("myOnOff");    if(oOnoff.src.match("bulbon")){        oOnoff.src="http://www.runoob.com/images/pic_bulboff.gif";        obody.style.background="black";        obody.style.color="white";    }else{         oOnoff.src="http://www.runoob.com/images/pic_bulbon.gif";        obody.style.background="white";        obody.style.color="black";    }}

 

 

 

       2、父模板的制作

制作网站网页共有元素的父模板html,包括顶部导航,中间区块划分,底部导航,底部说明等。

汇总相关的样式形成独立的css文件。

汇总相关的js代码形成独立的js文件。

形成完整的base.html+css+js

 

html代码:

 

css代码:

.header{
background-color:cadetblue; height: 60px; line-height: 40px;}.search-input {
background-color: #cccccc; margin-top: 8px; margin-left: 60px; float: left; width: 200px; height: 30px;}.dz {
color: red; font-size: 25px; font-family: "微软雅黑 Light"; font-weight: 800; float: right; padding-top: 5px; padding-right: 80px;}h2{
padding-top: 20px;}img {
width: 400px;}div.img {
border: 1px solid #cccccc; float: left; margin: 30px; width: 260px;}div.img img {
width: 100%; height: auto;}div.desc {
background-color: cadetblue; text-align: center; padding: 5px;}div.img:hover {
border: 1px solid #000000;}div.desc:hover {
border: 1px solid #000000;}div.clearfolat {
clear: both;}#footer {
background-color: cadetblue; clear: both; text-align: center; line-height: 20px; color: #FFF; padding-top: 10px; padding-bottom: 15px;}

 

转载于:https://www.cnblogs.com/1257-/p/7774103.html

你可能感兴趣的文章
Nothing 和 Is
查看>>
第一个sprint冲刺第三天
查看>>
r 选取从小到大的数据_r 选取数据库
查看>>
springMVC3学习(九)--redirect和forward跳转
查看>>
Spark技术栈
查看>>
EGLImage与纹理
查看>>
Redis(七):Jedis简介和集群
查看>>
Web API 持续集成:PostMan+Newman+Jenkins(图文讲解)
查看>>
证书生成加密码解密
查看>>
弹窗查看内容时 内容滚动区域设置为body区
查看>>
Windows Azure Platform Introduction (6) Windows Azure应用程序运行环境
查看>>
Windows Azure VM Role (3) 在VHD中安装Windows Server 2008 R2
查看>>
Windows 8 Platform (三) Windows 8 Developer Preview
查看>>
根据条件用一个表的字段,去更新另一个表的字段
查看>>
thinkphp模板中使用自定义函数
查看>>
TP复习3
查看>>
(Delphi) Using the Disk Cache 使用磁盘缓存
查看>>
用Feature的方式删除SharePoint2010的Page中重复的WebPart
查看>>
递归算法学习系列之三(快速排序)
查看>>
从TdataSet生成OleVariant
查看>>