LayUI 的安裝及使用

LayUI

主要內(nèi)容

LayUI 的安裝及使用

LayUI 的介紹

layui(諧音:類UI) 是一款采用自身模塊規(guī)范編寫的前端 UI 框架,遵循原生 HTML/CSS/JS 的書寫與組織形式撬腾,門檻極低,拿來即用胰默。

由國人開發(fā)漓踢,16年出廠的框架,其主要提供了很多好看喧半、方便的樣式,并且基本拿來即用挺据,和Bootstrap有些相似取具,但該框架有個(gè)極大的好處就是定義了很多前后端交互的樣式接口扁耐,如分頁表格,只需在前端配置好接口块仆,后端則按照定義好的接口規(guī)則返回?cái)?shù)據(jù)构蹬,即可完成頁面的展示悔据,極大減少了后端人員的開發(fā)成本。

官網(wǎng):https://www.layui.com

官方文檔:https://www.layui.com/doc/

LayUI 的特點(diǎn)

(1)layui屬于輕量級框架铐姚,簡單美觀肛捍。適用于開發(fā)后端模式,它在服務(wù)端頁面上有非常好的效果拙毫。

(2)layui是提供給后端開發(fā)人員的ui框架,基于DOM驅(qū)動峭跳。

下載與使用

  1. 官網(wǎng)首頁 下載到 layui 的最新版缺前。目錄結(jié)構(gòu)如下:

    <pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="js" cid="n20" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit;"> ├─css // css目錄
    │ │─modules // 模塊css目錄(一般如果模塊相對較大,我們會單獨(dú)提取衅码,比如下面三個(gè):)
    │ │ ├─laydate
    │ │ ├─layer
    │ │ └─layim
    │ └─layui.css // 核心樣式文件
    ├─font // 字體圖標(biāo)目錄
    ├─images // 圖片資源目錄(目前只有l(wèi)ayim和編輯器用到的GIF表情)
    │─lay // 模塊核心目錄
    │ └─modules // 各模塊組件
    │─layui.js // 基礎(chǔ)核心庫
    └─layui.all.js // 包含layui.js和所有模塊的合并文件</pre>

  2. 獲得 layui 后,將其完整地部署(拷貝到項(xiàng)目中)到你的項(xiàng)目目錄垛玻,你只需要引入下述兩個(gè)文件:

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="js" cid="n23" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">./layui/css/layui.css
./layui/layui.js // 提示:如果是采用非模塊化方式奶躯,此處可換成:./layui/layui.all.js</pre>

  1. 基本的入門頁面

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="html" cid="n27" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>開始使用layui</title>
<link rel="stylesheet" href="layui/css/layui.css">
</head>
<body>

<script src="layui/layui.js"></script>
<script>
// 模塊和回調(diào)函數(shù)
// 一般直接寫在一個(gè)js文件中
layui.use(['layer', 'form'], function(){
var layer = layui.layer
,form = layui.form;
?
layer.msg('Hello World');
});
</script>
</body>
</html></pre>

  1. 還需要聲明需要使用的 模塊回調(diào)函數(shù)嘹黔。參照官方文檔,選擇自己想要的效果就行儡蔓。

    比如:

    <pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="html" cid="n32" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit;"><script>
    // 注意:導(dǎo)航 依賴 element 模塊,否則無法進(jìn)行功能性操作
    layui.use('element', function(){
    var element = layui.element;
    ?
    //…
    });
    </script></pre>

頁面元素

布局

布局容器

固定寬度

將柵格放入一個(gè)帶有 class="layui-container" 的特定的容器中恳不,以便在小屏幕以上的設(shè)備中固定寬度开呐,讓列可控规求。

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="html" cid="n40" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><div class="layui-container">
<div class="layui-row">
……
</div>
</div> </pre>

完整寬度

可以不固定容器寬度卵惦。將柵格或其它元素放入一個(gè)帶有 class="layui-fluid" 的容器中,那么寬度將不會固定沮尿,而是 100% 適應(yīng)

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="html" cid="n43" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><div class="layui-fluid">
……
</div> </pre>

柵格系統(tǒng)

為了豐富網(wǎng)頁布局畜疾,簡化 HTML/CSS 代碼的耦合,并提升多終端的適配能力啡捶,layui 引進(jìn)了一套具備響應(yīng)式能力的柵格系統(tǒng)。將容器進(jìn)行了 12 等分彤敛,預(yù)設(shè)了 4*12 種 CSS 排列類了赌,它們在移動設(shè)備墨榄、平板勿她、桌面中/大尺寸四種不同的屏幕下發(fā)揮著各自的作用。

柵格布局規(guī)則
  1. 采用 layui-row 來定義行,如:

    <pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="html" cid="n51" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit;"><div class="layui-row"></div></pre>

  2. 采用類似 layui-col-md* 這樣的預(yù)設(shè)類來定義一組列(column)筒狠,且放在行(row)內(nèi)箱沦。其中:

    • 變量 md 代表的是不同屏幕下的標(biāo)記

    • 變量 ***** 代表的是該列所占用的12等分?jǐn)?shù)(如6/12),可選值為 1 - 12

    • 如果多個(gè)列的“等分?jǐn)?shù)值”總和等于12谓形,則剛好滿行排列。如果大于12寒跳,多余的列將自動另起一行。

  3. 列可以同時(shí)出現(xiàn)最多四種不同的組合米辐,分別是:xs(超小屏幕,如手機(jī))翘贮、sm(小屏幕,如平板)狸页、md(桌面中等屏幕)、lg(桌面大型屏幕)址遇。

  4. 可對列追加類似 layui-col-space5齿穗、 layui-col-md-offset3 這樣的預(yù)設(shè)類來定義列的間距和偏移。

  5. 可以在列(column)元素中放入你自己的任意元素填充內(nèi)容

示例:

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="html" cid="n68" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><h3>常規(guī)布局(以中型屏幕桌面為例):</h3>
<div class="layui-row">
<div class="layui-col-md9" style="background-color: #00F7DE;">
你的內(nèi)容 9/12
</div>
<div class="layui-col-md3" style="background-color: rosybrown;">
你的內(nèi)容 3/12
</div>
</div></pre>

響應(yīng)式規(guī)則

柵格的響應(yīng)式能力跺株,得益于CSS3媒體查詢(Media Queries)的強(qiáng)力支持脖卖,從而針對四類不同尺寸的屏幕,進(jìn)行相應(yīng)的適配處理畦木。

超小屏幕 (手機(jī)<768px) 小屏幕 (平板≥768px) 中等屏幕 (桌面≥992px) 大型屏幕(桌面≥1200px)
.layui-container的值 auto 750px 970px 1170px
標(biāo)記 xs sm md lg
列對應(yīng)類 * 為1-12的等分?jǐn)?shù)值 layui-col-xs* layui-col-sm* layui-col-md* layui-col-lg*
總列數(shù) 12 12 12 12
響應(yīng)行為 始終按設(shè)定的比例水平排列 在當(dāng)前屏幕下水平排列,如果屏幕大小低于臨界值則堆疊排列 在當(dāng)前屏幕下水平排列蛆封,如果屏幕大小低于臨界值則堆疊排列 在當(dāng)前屏幕下水平排列勾栗,如果屏幕大小低于臨界值則堆疊排列

<pre spellcheck="false" class="md-fences mock-cm md-end-block" lang="html" cid="n109" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: pre-wrap; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><h3>平板、桌面端的不同表現(xiàn):</h3>
<div class="layui-row">
<div class="layui-col-sm6 layui-col-md4"
style="background-color: thistle">
平板≥768px:6/12 | 桌面端≥992px:4/12
</div>
</div>

<div class="layui-row">
<div class="layui-col-sm4 layui-col-md6"
style="background-color: mediumaquamarine;">
平板≥768px:4/12 | 桌面端≥992px:6/12
</div>
</div>

<div class="layui-row">
<div class="layui-col-sm12 layui-col-md8"
style="background-color: coral">
平板≥768px:12/12 | 桌面端≥992px:8/12
</div>
</div></pre>

列邊距

通過“列間距”的預(yù)設(shè)類砸讳,來設(shè)定列之間的間距界牡。且一行中最左的列不會出現(xiàn)左邊距,最右的列不會出現(xiàn)右邊距宿亡。列間距在保證排版美觀的同時(shí),還可以進(jìn)一步保證分列的寬度精細(xì)程度挽荠。我們結(jié)合網(wǎng)頁常用的邊距泊碑,預(yù)設(shè)了 12 種不同尺寸的邊距毯欣,分別是:

<pre spellcheck="false" class="md-fences mock-cm md-end-block" lang="css" cid="n112" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: pre-wrap; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">/* 支持列之間為 1px-30px 區(qū)間的所有雙數(shù)間隔,以及 1px腹忽、5px砚作、15px、25px 的單數(shù)間隔 */
layui-col-space1
layui-col-space2
layui-col-space4
layui-col-space5
layui-col-space6
layui-col-space8
layui-col-space10
layui-col-space12
layui-col-space14
layui-col-space15
layui-col-space16
layui-col-space18
layui-col-space20
layui-col-space22
layui-col-space24
layui-col-space25
layui-col-space26
layui-col-space28
layui-col-space30</pre>

示例:

<pre spellcheck="false" class="md-fences mock-cm md-end-block" lang="html" cid="n114" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: pre-wrap; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><h3>列間距</h3>
<div class="layui-row layui-col-space10">
<div class="layui-col-md4" >

<div style="background-color: #009688;">
1/3
</div>
</div>
<div class="layui-col-md4">
<div style="background-color: burlywood;">
1/3
</div>
</div>
<div class="layui-col-md4">
<div style="background-color: silver;">
1/3
</div>
</div>
</div></pre>

注:

  1. layui-col-space:設(shè)置后不起作用主要是因?yàn)?strong>設(shè)置的是padding,也就是說是向內(nèi)縮着裹,所以設(shè)置背景色padding也是會添上顏色米同,看起來好像沒有間距一樣∶媪福可以在里面在加一個(gè)div,來達(dá)到目的熬苍。

    1. 間距一般不高于30px,如果超過30婿脸,建議使用列偏移。
列偏移

對列追加 類似 layui-col-md-offset* 的預(yù)設(shè)類狐树,從而讓列向右偏移凿歼。其中 * 號代表的是偏移占據(jù)的列數(shù)冗恨,可選中為 1 - 12。 ? 如:layui-col-md-offset3掀抹,即代表在“中型桌面屏幕”下,讓該列向右偏移 3 個(gè)列寬度

<pre spellcheck="false" class="md-fences mock-cm md-end-block" lang="html" cid="n125" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: pre-wrap; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><h3>列偏移</h3>
<div class="layui-row">
<div class="layui-col-md4" style="background-color: rosybrown;">
4/12
</div>
<div class="layui-col-md4 layui-col-md-offset4"
style="background-color: cornflowerblue;">
偏移4列蓉驹,從而在最右
</div>
</div></pre>

注:列偏移可針對不同屏幕的標(biāo)準(zhǔn)進(jìn)行設(shè)定,在當(dāng)前設(shè)定的屏幕下有效态兴,當(dāng)?shù)陀谧烂嫫聊坏囊?guī)定的臨界值,就會堆疊排列瞻润。

列嵌套

可以對柵格進(jìn)行無窮層次的嵌套。在列元素(layui-col-md)中插入行元素(layui-row*)正勒,即可完成嵌套。

<pre spellcheck="false" class="md-fences mock-cm md-end-block" lang="html" cid="n130" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: pre-wrap; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><h3>列嵌套</h3>
<div class="layui-row layui-col-space5">
<div class="layui-col-md5" style="background-color: thistle;">
<div class="layui-row">
<div class="layui-col-md3" style="background-color: burlywood;" >
內(nèi)部列
</div>
<div class="layui-col-md5" style="background-color: indianred;">
內(nèi)部列
</div>
<div class="layui-col-md4" style="background-color: mediumaquamarine;">
內(nèi)部列
</div>
</div>
</div>
</div></pre>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市非洲,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌里覆,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,907評論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件喧枷,死亡現(xiàn)場離奇詭異弓坞,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)渡冻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,987評論 3 395
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來帽借,“玉大人,你說我怎么就攤上這事砍艾∥【伲” “怎么了?”我有些...
    開封第一講書人閱讀 164,298評論 0 354
  • 文/不壞的土叔 我叫張陵,是天一觀的道長梦皮。 經(jīng)常有香客問我桃焕,道長剑肯,這世上最難降的妖魔是什么观堂? 我笑而不...
    開封第一講書人閱讀 58,586評論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮寂祥,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘丸凭。我一直安慰自己腕铸,他們只是感情好惜犀,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,633評論 6 392
  • 文/花漫 我一把揭開白布虽界。 她就那樣靜靜地躺著,像睡著了一般莉御。 火紅的嫁衣襯著肌膚如雪俗冻。 梳的紋絲不亂的頭發(fā)上礁叔,一...
    開封第一講書人閱讀 51,488評論 1 302
  • 那天迄薄,我揣著相機(jī)與錄音,去河邊找鬼涣易。 笑死,一個(gè)胖子當(dāng)著我的面吹牛新症,可吹牛的內(nèi)容都是我干的冕广。 我是一名探鬼主播,決...
    沈念sama閱讀 40,275評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼金抡,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了梗肝?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,176評論 0 276
  • 序言:老撾萬榮一對情侶失蹤禀晓,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后粹懒,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,619評論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡凫乖,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,819評論 3 336
  • 正文 我和宋清朗相戀三年弓颈,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片导街。...
    茶點(diǎn)故事閱讀 39,932評論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡纤子,死狀恐怖搬瑰,靈堂內(nèi)的尸體忽然破棺而出控硼,到底是詐尸還是另有隱情,我是刑警寧澤象颖,帶...
    沈念sama閱讀 35,655評論 5 346
  • 正文 年R本政府宣布,位于F島的核電站抄瓦,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏钙姊。R本人自食惡果不足惜埂伦,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,265評論 3 329
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧膊毁,春花似錦、人聲如沸描焰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,871評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽力图。三九已至,卻和暖如春吃媒,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背晓折。 一陣腳步聲響...
    開封第一講書人閱讀 32,994評論 1 269
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留漾月,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,095評論 3 370
  • 正文 我出身青樓梁肿,卻偏偏與公主長得像觅彰,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子填抬,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,884評論 2 354