🍄樂愛生活手札
休閒環保田園樂🍇愛心靈健康養生
樂活(LOHAS)意義是一種健康、永續的生活方式
強調身心靈的平衡、對環境的關懷,以及對社會的貢獻。

2015/01/23

簡易油飯做法

24👀 20/03_ 本文分類:



簡易油飯做法
糯米一杯,用量杯九分滿的米酒煮。用酒煮糯米比較水煮來的補也會有酒香(水煮糯米只能放八分的水)如果希望煮出的糯米更香,可以在煮飯鍋內放入一到兩匙的油。記得要把油攪散。
煮好糯米後放旁邊備用。
用料有:醬油膏.麻油.油蔥酥(醬油看情況可加可不加)


配料:蝦米.肉(要預先醃過).香菇(泡水切條狀)



薑為了跟糯米一起入口,要切的極碎,用麻油爆香。
接著放入蝦米(台語音是冬蝦?)香菇一起炒。
肉為了不要炒太乾最後放下。肉只要熟了就可以放下一大把油蔥酥,關火。


糯米放入鍋中,加入蠔油跟品質較好的醬油膏拌開。這個時候鹹淡口味可以自己調整,如果醬油膏偏鹹可以加入糖等等。怕太乾可以噴一點高湯或者加一點油。
如果要做的更豐富一點可以加入切成小丁然後炸過的芋頭、碎的鹹蛋黃。
這樣就大功告成。




更多文章歡迎至原PO網站瀏覽- 原文網站:









沒有留言:

張貼留言

網路上留言需要注意禮儀和法律規範,避免不當言論造成他人困擾,尊重他人,不散布隱私、不人身攻擊或觸犯公然侮辱、誹謗等罪名。

橫幅和按鈕

正在載入所有標籤...
回到頂端圖片

相關文章

新1-隨機推薦文章

2.最新文章

新-3.熱門精選文章-動態與自選

// 版本:v1.0 // 版本說明 // 1. 修正了 Blogger XML 解析錯誤 (&& 符號問題)。 // 2. 新增了防閃爍功能。 // 3. 頁面在轉換成文章列表前會先隱藏原始內容,避免畫面跳動。 // -- // 引入 Tailwind CSS 以提供簡潔的響應式設計 const tailwindScript = document.createElement('script'); tailwindScript.src = "https://cdn.tailwindcss.com"; document.head.appendChild(tailwindScript); // 等待網頁內容載入完成 document.addEventListener('DOMContentLoaded', () => { // 選擇所有部落格文章項目 const posts = document.querySelectorAll('.post-outer'); // 尋找文章容器 let container = document.querySelector('.blog-posts'); if (!container && posts.length > 0) { container = posts[0].parentNode; } // 創建一個新的 div 來存放文章列表 const listContainer = document.createElement('div'); listContainer.className = 'space-y-6'; // 檢查是否找到文章 if (posts.length > 0) { // 在替換內容前,先隱藏原始文章,解決畫面閃爍問題 if (container) { container.style.visibility = 'hidden'; container.style.opacity = '0'; container.style.transition = 'visibility 0s, opacity 0.5s linear'; } // 遍歷所有文章 posts.forEach(post => { // 獲取文章標題和連結 const titleElement = post.querySelector('.post-header a'); const link = titleElement ? titleElement.href : '#'; const title = titleElement ? titleElement.innerText : '無標題'; // 獲取文章內文,並擷取前 150 個字元作為摘要 const bodyElement = post.querySelector('.post-body'); const fullText = bodyElement ? bodyElement.innerText : ''; const snippet = fullText.substring(0, 150) + (fullText.length > 150 ? '...' : ''); // 創建一個新的列表項目 const listItem = document.createElement('div'); listItem.className = 'bg-white rounded-lg shadow-md p-6'; // 使用更安全的 UTF-8 字元 '→' 替代 '→' listItem.innerHTML = `

${title}

${snippet}

閱讀更多 → `; // 將列表項目添加到新的容器中 listContainer.appendChild(listItem); }); // 清空原始文章內容,並用新的列表取代 if (container) { container.innerHTML = ''; container.appendChild(listContainer); // 替換完成後,再顯示出來 container.style.visibility = 'visible'; container.style.opacity = '1'; } } });