本文引用自fu789fu - 秋蓮 秋蓮 文◎永緣 向晚,雲捲起千堆情 紅蜻蜓輕吻蓮的羞赧 抹一池胭脂紅妝 寫四方雅韻秋色 季風耕鋤淺淺波紋 倒影雲的繽紛往事 秋至,適合邀月詩吟 撿顆小石子擲向池塘 讓漣漪圈住放逐的心 別驚擾老去的浮萍 這年頭安安靜靜地老去不容易 昨日,秋蟬夜未眠 喚醒了紅蓮 喚醒蓮的相思 後山古道太柔腸 枯葉薄似蟬翼 一望眼,就可看見妳 箭步擁抱彩霞 慢慢醉沉西天 木魚頻頻敲擊斑駁禪寺 陣雨狂亂蓮花妝 煙香燻黑了門環 佛陀一坐便是百年 一炷虔敬,拜見佛心 渡信眾修得智慧增上緣 花開勿喜,花謝不同悲 心存善念,何懼此生千萬難 <!-- #styleme-profile-card, #styleme-profile-card * { margin: 0; padding: 0; border: none; text-decoration: none; } #styleme-profile-card.profile-card { display: none; margin: 30px 0; border: 1px solid #fff; } #styleme-profile-card .profile-card__title { height: 40px; color: #fff; font-size: 1rem; text-align: center; line-height: 40px; background-color: #000; } #styleme-profile-card .profile-card__logo { width: 80px; height: 27px; margin-right: 10px; vertical-align: middle; } #styleme-profile-card .profile-card__container { padding: 20px 30px; background-color: #fff; border: 1px solid #888; } #styleme-profile-card .author__avatar-link { float: left; width: 200px; height: 200px; border-radius: 50%; overflow: hidden; } #styleme-profile-card .author__avatar-link:hover { opacity: .9; } #styleme-profile-card .author__details { min-height: 200px; margin-left: 240px; } #styleme-profile-card .author__name a { color: #000; font-size: 24px; line-height: 1; text-decoration: none; } #styleme-profile-card .author__name a:hover { color: #565a5c; text-decoration: none; } #styleme-profile-card .author__info { margin: 10px 0 20px; font-size: 14px; } #styleme-profile-card .author__info span + span { margin-left: 1em; } #styleme-profile-card .author__intro { color: #565a5c; font-size: 14px; line-height: 20px; text-align: justify; word-break: break-all; } #styleme-profile-card .author__badges { margin-top: 10px; font-size: 0; text-align: center; overflow: hidden; } #styleme-profile-card .author__badge { display: inline-block; margin: 0 5px; } #styleme-profile-card .author__badge img { width: 70px; height: 70px; } --> 作者介紹 永緣 styleMe 文章人數:487 則 人氣: 人 簡介:穹蒼夜幕追星逐月;幽林溪潭漱風喚雲;霧罩霞披築夢青山;湖光翠微花開四季… // <![CDATA[ (function ($) { 'use strict'; var addStlyemeData = function (stylemeData) { var stylemeProfileCard = $('#styleme-profile-card'), articleAmount = stylemeProfileCard.find('#profile-card__article-amount'), authorBadges = stylemeProfileCard.find('.author__badges'), badgeTemplate = '<li class="author__badge"><img/></li>', authorBadgesHtml = $('<ul/>'), // 徽章列表 authorBadgesArr = [{ index: 'is_celebrity', image: 'https://styleme.pixnet.net/assets/images/icon-badge-fashion.png', alt: 'styleMe 風尚名人' }, { index: 'is_focus', image: 'https://styleme.pixnet.net/assets/images/icon-badge-cover.png', alt: 'styleMe 封面之星' }]; articleAmount.text(stylemeData.article_count); for (var i = 0; i < authorBadgesArr.length; i++) { if ('1' === stylemeData[authorBadgesArr[i].index]) { var thisBadge = $(badgeTemplate); thisBadge.find('img').attr('src', authorBadgesArr[i].image).attr(''); thisBadge.appendTo(authorBadgesHtml); } } authorBadges.append(authorBadgesHtml.html()); stylemeProfileCard.show(); addStylemeProfileGa(); }, stylemeProfilePushEvent = function (action, label) { ga('stylemeProfileCardTracker.send', { 'hitType': 'event', 'eventCategory': 'styleme in blog', 'eventAction': action, 'eventLabel': label }); }, addStylemeProfileGa = function () { var thisDevice = 'PC', stylemeProfileCard = $('.profile-card'); (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-66173444-1', 'auto', 'stylemeProfileCardTracker'); // 記錄曝光 stylemeProfilePushEvent('imps', thisDevice + '_author_image'); stylemeProfilePushEvent('imps', thisDevice + '_author_name'); // 記錄點擊 stylemeProfileCard.on('click', function (evt) { var thisClass = evt.target.getAttribute('class'); if (thisClass.indexOf('author__avatar') + 1) { stylemeProfilePushEvent('click', thisDevice + '_author_image'); } else if (thisClass.indexOf('author__name-link') + 1) { stylemeProfilePushEvent('click', thisDevice + '_author_name'); } }); }, // styleMe API 需要的變數 stylemeData = (function () { var urlWithoutTitle = window.location.href.split('?')[0].split('-')[0], urlWordArray = urlWithoutTitle.match(/(\w+)/g); return { username: urlWordArray[1], articleId: urlWordArray[urlWordArray.length - 1] }; })(); $.ajax({ url: 'http://emma.pixnet.cc/blog/articles/' + stylemeData.articleId + '/stylemebadge', type: 'get', dataType: 'json', data: { user: stylemeData.username, format: 'json' } }).done(function(response) { if (response.badge) { addStlyemeData(response.badge); } else { $('.profile-card').remove(); } }); })(jQuery); // ]]>