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

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

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

  1. 放置点击的按钮或图片。
  2. 定义开关切换函数。
  3. onclick函数调用。
    
调整模式

广州商学院欢迎你!

 

 

2.父模板的制作

  1. 制作网站网页共有元素的父模板html,包括顶部导航,中间区块划分,底部导航,底部说明等。
  2. 汇总相关的样式形成独立的css文件。
  3. 汇总相关的js代码形成独立的js文件。
  4. 形成完整的base.html+css+js

html

    
Title

广州商学院欢迎你!

活力广商,筑梦远航!

 js

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";            }        }

css

h1{
align-content: center; size: 800px; }img{
width: 20px; } div .img{
width: 250px; height: 200px; border: 1px solid #eeeeee; float: left; margin: 15px; } div.img img{
width: 100%; height: 80%; } div.desc{
text-align: center; padding: 15px; } div.img:hover{
border: 1px solid yellow; } .clearfloat{
clear: both; } footer{
position: fixed; bottom:0; width:100%; } footer .footer_box{
background-color: cyan; padding: 10px; color : #FFFFFF; text-align: center; } nav{
position:fixed; top:0px; height: 45px; background-color: cyan; border-bottom:1px solid #DDDDDD; width:100%; } .clearfloat {
clear: both; }

 

转载于:https://www.cnblogs.com/gdlyzx/p/7784169.html

你可能感兴趣的文章
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
Linux下的lds链接脚本简介(二)
查看>>
入门到进阶React
查看>>
C++每日练笔之日期类(基类)
查看>>
SVN 命令笔记
查看>>
修复Postfix 的Relay access denied问题
查看>>
检验手机号码
查看>>
重叠(Overlapped)IO模型
查看>>
ffmpeg study 1
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
MySQL 5.6 for Windows 解压缩版配置安装
查看>>