<html>
<head></head>
<body></body>
</html>
<pre><code class="language-css">
body{margin:0; background-color:red;}
</code></pre>
<html>
<head></head>
<body></body>
</html>
<pre><code class="language-css">
body{margin:0; background-color:red;}
</code></pre>
简易版的原理
取出data下的一条box数据。判断四个li容器谁最短,把刚取出的数据放进去,以此类推。
<div class="content">
<ul>
<li><li>
<li><li>
<li><li>
<li><li>
</ul>
</div>
<div class="data hide">
<div class="box"><img src="http://placehold.it/250x200/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x300/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x400/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x200/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x500/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x200/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x600/f88/fff></div>
<div class="box"><img src="http://placehold.it/250x200/f88/fff></div>
</div>
网上有很多方法,我的方法分两步:
第一步:php.ini(如何找到php.ini文件phpinfo())
目录/etc/php.ini
file_uploads =on; upload_max_filesize = 1024m; post_max_size = 1024m;
修改Nginx上传大小限制
/etc/nginx/nginx.conf 添加 client_max_body_siz 1024m; (允许上传1024M)
特别注意:这句写在http{}花括号中。
推荐使用免费的plyr播放器,官网https://plyr.io/
flowplayer是收费的。
一,flowplayer基础用法
<!-- 1. skin -->
<link href="https://cdn.bootcss.com/flowplayer/7.0.4/skin/skin.css" rel="stylesheet">
<!-- 2. jquery library - required for video tag based installs -->
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<!-- 3. flowplayer -->
<script src="https://cdn.bootcss.com/flowplayer/7.0.4/flowplayer.js"></script>
二,flowplayer的HTML结构
<div class="flowplayer">
<video autoplay poster="images/poster.jpg">
<source type="video/mp4" src="path/video.mp4">
</video>
</div>
三,css样式“去掉”flowplayer的logo
<! --去掉分享和全屏按钮-->
.fp-header{display: none;}
<!-- 让播放器下面所有的a标签透明度为0 -->
.flowplayer a{opacity: 0;}
<!-- 播放按钮的透明度恢复为1-- >
.flowplayer a.fp-playbtn{opacity: 1;}
1,安装MySQLdb模块,两种办法
pip install MySQL-python
或者下载源码安装,下载地址 https://pypi.python.org/pypi/MySQL-python
$zip MySQL-python-1.2.2.tar.gz
$ tar -xvf MySQL-python-1.2.2.tar
$ cd MySQL-python-1.2.2
$ python setup.py build
$ python setup.py install
2,安装python的MySQLdb时报错mysql_config not found
我的linux系统时centOS7,用的数据库时mariadb,
解决办法:
yum install mysql-devel
然后在执行1的安装
3,检查是否安装成功
进入python
>>import MySQLdb
>>
无返回值,表示安装成功
完美解决
import urllib2
#直接请求url
response = urllib.urlopen('http://www.baidu.com')
#获取状态码,如200
print response.getcode()
#打印网页源码
print response.read()
<c-y>, 展开简写式
<c-y>d Balance a Tag Inward(选中包围的标签?)
<c-y>D Balance a Tag Outward
<c-y>n 进入下个编辑点
<c-y>N 进入上个编辑点
<c-y>i 更新<img>图像尺寸
<c-y>m 合并文本行
<c-y>k 删除标签
<c-y>j 分解/展开空标签
<c-y>/ 注释开关
<c-y>a 从URL生成anchor标签
<c-y>A 从URL生成引用文本
今天周一,我在北京