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 4041 64 65 66 67134 135 145 96 97 98 101 102103118 119 122 123 124 125 133104109105 106 107108110 111112 113 117
2、add.php
1 7 8 9 10 11 12index 13 14 15 16 17 43 44 4546 69 70111 112 13671101 102 110727773 74 发布动漫 757678 99100
3、insert.php
1