PIXNET Logo登入

keep learning, keep moving

跳到主文

Life is like riding a bicycle. To keep your balance you must keep moving -- Albert Einstein.

部落格全站分類:財經政論

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 12月 12 週五 200807:46
  • javascript圖片click放大





>
(繼續閱讀...)
文章標籤

amy5259 發表在 痞客邦 留言(0) 人氣(2,216)

  • 個人分類:javascript
▲top
  • 9月 12 週五 200809:40
  • 禁止滑鼠案右鍵-javascript功能

禁止滑鼠暗右鍵的做法
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>全面禁止鼠標右鍵、FX、Alt、Ctrl、Shift等</title> </head> <mce:script type="text/javascript"><!-- function onKeyDown() { if ((event.keyCode==116)||(window.event.ctrlKey)||(window.event.shiftKey)||(event.keyCode==122)) { event.keyCode=0; event.returnValue=false; } } // --></mce:script> <mce:script type="text/javascript"><!-- function yxl() { if(window.event.altKey) { window.event.returnValue=false; } } document.onkeydown=yxl // --></mce:script> <body bgcolor="#cccccc" text="#666666" onkeydown="onKeyDown()" oncontextmenu="return false" onselectstart="return false" ondragstart="return false" > <div mce_tmp="1">該頁面禁止了鼠標右鍵,F5、F11、「應用程序」鍵,所有與alt、ctrl和shift有關的組合鍵</div> <div mce_tmp="1"> </div> </body> </html>
(繼續閱讀...)
文章標籤

amy5259 發表在 痞客邦 留言(0) 人氣(939)

  • 個人分類:javascript
▲top
  • 9月 12 週五 200800:45
  • 用jQuery寫Drag and Drop心得1

parents( expr ) http://docs.jquery.com/API/1.1/DOM/Traversing Get a set of elements containing the unique ancestors of the matched set of elements (except for the root element). Can be filtered with an optional expressions. Return value: jQueryParameters: expr (String): (optional) An expression to filter the ancestors with appendTo( content ) 網址: http://docs.jquery.com/Manipulation/appendTo show( speed, callback ) Returns: jQuery Show all matched elements using a graceful animation and firing an optional callback after completion. hide( ) Hides each of the set of matched elements if they are shown. Same as hide( speed, [callback] ) without animations. Doesn't change anything if the selected elements are all hidden. Demo : View SourceHides all paragraphs then the link on click. $("p").hide(); $("a").click(function () { $(this).hide(); return false; }); EFFECTS/ELEMENATE http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback animate( params, [duration], [easing], [callback] ) DemoView SourceShows a div animate with a relative move. Click several times on the buttons to see the relative animations queued up. $("#right").click(function(){ $(".block").animate({"left": "+=50px"}, "slow"); }); $("#left").click(function(){ $(".block").animate({"left": "-=50px"}, "slow"); }); 希望能寫出可以拖拉但本身不會被移走的圖片
(繼續閱讀...)
文章標籤

amy5259 發表在 痞客邦 留言(1) 人氣(5,396)

  • 個人分類:javascript
▲top
1

FB

Hot

最新文章

  • 如何透過聊天機器人(Chatbot) 翻轉企業與客戶的溝通方式
  • Apple iWatch 動態 & 相關新聞整理
  • 儿童在线娱乐运营商“百奥家庭”下周上市,红杉大赚36倍
  • 中國互聯網
  • 下一個big thing:物聯網(internet of things)
  • TPG和復星醫藥聯手以3.69億美元收購美中互利
  • KKR reports a 6.8 percent stake in chipmaker Marvell
  • 黑石集團大中華區主席梁錦松將離職,明年2月起任南豐CEO
  • JPMorgan, US in tentative $13 billion settlement
  • Carlyle Among Firms Finding Taiwan Banks No Path to China

My Space

amy5259
暱稱:
amy5259
分類:
財經政論
好友:
累積中
地區:

文章分類

toggle PE/VC (2)
  • VC-Venture Capital (7)
  • PE-Private Equity (26)
toggle Investment Bank (2)
  • Investment Banks (22)
  • Private Banking (1)
toggle IBD (3)
  • IBD-Investment Banking (2)
  • Underwritng-(IPO/SPO/CB/ECB/GDR) (3)
  • Mergers and acquisitions -M&A (11)
toggle Consulting (1)
  • Consulting (13)
toggle Knowledge is infinite (9)
  • Marketing (2)
  • Finance (19)
  • Currency (1)
  • Economy (68)
  • personality (1)
  • environment (5)
  • Management (14)
  • CEO View (2)
  • Law (7)
toggle News-Tech (3)
  • 科技新聞 (10)
  • 科技新聞-資訊3C (11)
  • 電腦軟硬體 (1)
toggle News-Finance (4)
  • NEWS (75)
  • Commodities (2)
  • Mutual Funds related (12)
  • Equity Market (9)
toggle There is no royal road to learning. (5)
  • 個人學習札記 (23)
  • StudyAbroad (18)
  • 求職經驗談文章 (9)
  • 公關/廣告 (4)
  • Jesus (3)
toggle Web Designing (2)
  • javascript (3)
  • css (2)
  • 未分類文章 (1)

熱門文章

  • (21,119)職前準備 》公關業徵才 脫掉高跟鞋的灰姑娘請進
  • (20,620)IBM GBS前世今生
  • (18,341)[經濟] The Economist 《經濟學人》常用詞彙大總結
  • (5,871)交易成本經濟學(Transaction Cost Economics,簡稱TCE)
  • (5,319)2010全球頂尖商學院排名
  • (2,040)微軟的豪賭:免費 Office 2010
  • (1,955)MSCI Bloomberg ticker
  • (1,116)轉職達人-eBay台灣區總經理 王俊朗
  • (310)羅馬書第五章
  • (228)Best Colleges: Top Public Schools: National Universities

Recent Comments

  • [25/02/15] Jesica 於文章「如何透過聊天機器人(Chatbot) 翻...」留言:
    Keep learning, and you’ll keep...
  • [25/02/15] Loriii 於文章「如何透過聊天機器人(Chatbot) 翻...」留言:
    The blog at amy5259.pixnet.net...
  • [22/12/31] miruuu 於文章「[經濟] The Economist 《...」留言:
    你好~我是準備研究所的考生,這篇經濟學專有名詞寫得很詳細,可...
  • [21/09/15] zxcv5835715 於文章「[經濟] The Economist 《...」留言:
    你好我是轉學考大一生,您的文章書寫詳細對我幫助很大,想麻煩你...
  • [21/04/26] 仰賢 於文章「[經濟] The Economist 《...」留言:
    不好意思我的信箱少打一個@ 是189yin@gmail.c...
  • [21/04/26] 仰賢 於文章「[經濟] The Economist 《...」留言:
    您好!我是準備要轉學考的學生,您的文章對我的幫助真的很大!請...
  • [18/11/14] CLAB 於文章「[轉貼]奧美廿一世紀公關面試...」發表了一則私密留言
  • [18/05/07] u550368 於文章「如何透過聊天機器人(Chatbot) 翻...」留言:
    d6vFql2i1:1大牌專賣,簡潔美學 盡吹極簡風 融入後...
  • [16/02/20] wstjhrthrt 於文章「閒來習法--證券交易法[總則]+[有價證...」留言:
    華航 (2610) 根本完全是一家不值得投資的公司,我來...
  • [15/02/09] 任方元 於文章「中美貨幣戰爭,開打!...」留言:
    全球貨幣戰爭從來沒有停歇過。...

參觀人氣

  • 本日人氣:
  • 累積人氣:

自訂側欄

文章精選

文章搜尋