博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bootstrap手机网站开发案例
阅读量:6441 次
发布时间:2019-06-23

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

Bootstrap手机网站开发案例

一、总结

一句话总结:Bootstrap手机网站开发注意事项(3点):a、引入viewpoint声明,b、通过屏幕宽动态控制元素显隐 c、图片添加自适应

 

1、Bootstrap手机网站开发注意事项(3点)?

a、引入手机声明

11     

b、通过屏幕宽动态控制元素显隐

135 

c、图片添加自适应

143 $('.panel-body img').addClass('img-responsive');

 

2、页面引用原生数据库操作方法及位置?

php放开头

1 
7

 

 

3、应用框架内元素方法,比如bootstrap中的幻灯片?

引模块加指定id进行样式微调

21         .navbar-brand{ 22             padding:0px; 23         }

 

4、模型中foreach循环拆开写?

98         
119         

 

5、网站到数据库内容转实体方法?

110                 

 

6、除uedit外另一个富文本编辑器?

kd,kindeditor,用法和ueditor很像,引文件加js

16     
122 var editor;123 KindEditor.ready(function(K) {124     editor = K.create('#txt', {125         resizeType : 1,126         allowPreviewEmoticons : false,127         allowImageUpload : false,128         items : [129             'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',130             'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',131             'insertunorderedlist', '|', 'emoticons', 'image', 'link']132     });133 });

 

7、通过header跳转方法?

12     header('location:index.php');

 

 

二、Bootstrap手机网站开发案例

 

1、index.php

1 
7 8 9 10
11
12 动漫乐园 13
14 15 16 38 39 40
41
64 65 66
67
96 97
98
101 102
103
104
105
106
107
108
109
110
111
112 113
117
118 119
122 123 124
125
133
134 135 145

 

 

2、add.php

1 
7 8 9 10
11
12 index 13
14 15 16 17 43 44 45
46
69 70
71
72
73
74
发布动漫 75
76
77
78
79
80
81
82
83 84
85
86
87
88 89
90
91
92
93 94
95
96
97
98
99
100
101 102
110
111 112 136

 

3、insert.php

1 

 

 

 

 

 

 

 
 
 
 
 

转载地址:http://cwkwo.baihongyu.com/

你可能感兴趣的文章
Swoole WebSocket 的应用
查看>>
219. 单页应用 会话管理(session、cookie、jwt)
查看>>
【比赛】百度之星2017 初赛Round B
查看>>
AFNetworking之AFSecurityPolicy深入学习
查看>>
JavaScript中的“this”
查看>>
Java中abstract class和interface的区别
查看>>
(OkHttp3+Gson)用MVP模式实现天气预报小demo
查看>>
5G时代下,优质内容依然短视频源码的核心竞争力
查看>>
别再写getter,setter方法了,用Lombok来简化你的代码吧
查看>>
Mybatis使用篇之二:HelloWorld
查看>>
jQuery.Deferred exception: $.get is not a function TypeError: $.get is not a function
查看>>
使用组件的时候取消冒泡
查看>>
配置svn
查看>>
Django 补充
查看>>
OO第三单元作业总结
查看>>
[UIKit学习]07.关于如何选择UIButton、UILable、UIImageView
查看>>
小程序版聊天室|聊天小程序|仿微信聊天界面小程序
查看>>
Windows7下PHP5.6.19+Apache2.4.18+MySql5.7环境配置
查看>>
51nod 消灭兔子
查看>>
依赖注入
查看>>