How can I see the source code for a demo on SwiperJS.com? Link below - swiper.js

I'm having a problem finding the source code for this demo:
https://swiperjs.com/demos#css-mode
I think the website may have changed a bit because looking at youtube tutorial, they was a button there for source code which has now disappeared... Thankful for help

You should go to https://swiperjs.com/ then click on the github icon found on their website which will redirect you to their github repo.Click on their demo repo and choose css-mode.html to get the source code

Related

I can't manage to integrate / modify code jssor slider

I'm a beginner with jssor and I follow the tutorials: it's great, but I have 2 problems now . I'm blocked and I don't find the solution since many days...
1- I found an example in jssor.com. I exported the code and follow the process to integrate it in my website (jssor folder and copy/paste the code). I changed the pictures files but how to change texts (captions?) etc...? I am blocked!
2- So I created and saved a slider in my workspace in order to integrate it in my website. I downloaded my project but I only have myslider.slider and no code.txt or something else?
How can I do?
Thank you in advance for your help.
I precise you that I don't know code language. It's the reason why I find jssor very easy... if I manage to go further!
Regards,
D. Fabre
View your slider https://www.jssor.com/[yourusername]/myslider.slider
And then click the command at top right corner of the slider, choose download 'standard code'.
For example, https://www.jssor.com/demos/image-slider

Bootstrap carousel doesn't start automatically

It may appear a repeated question but it is a serious one and I found no solution for it in any related question.
I have downloaded a bootstrap theme from ShapeBootstrap website
Demo theme
I use Firefox 30. As you may see in the demo page too, the slider doesn't start automatically! however if one click on the next slide it starts running!
I did anything I read in the similar questions but nothing happened!
The order of scripts is OK
It is in the end of file
No error reported in console ...
You can view and follow the source code of the demo page. Everything is in its place. But I wonder why it has this problem even in the official website of the theme.
Please guide me what can I do.
To understand what was going wrong was difficult!
I replaced the carousal section(html) with this one from http://startbootstrap.com/templates/full-slider/
I added full-slider.css to the list of my css files and used the latest version of bootstrap script and now it works!

Facebook login button showing "Undefined" instead of "Login"

The facebook login button implemented in my website was showing the text as "undefined" instead of "Login" in firefox latest version in Windows 7. So to fix that i went to get the latest code from the Plugin page at https://developers.facebook.com/docs/reference/plugins/login/.
Its showing "undefined" in the preview button also. What should be done to get it fixed?
I am ready to use the latest code given but it looks like a problem with facebook JS to me.
Sorry! I don't have enough rep to post an image :P
I reported it to fb and referenced Ravi's screenshot. Here's my bug report, if you want to subscribe -
https://developers.facebook.com/bugs/383067995106570
This problem once frustrated me and i searched for the solution in many sites. I find one site to be very helpful for me as my problem is solved and solution is easy to understand. so i am sharing with you guys. just go to www.facebookloginhelp.net and get your problem solved.

How to implement Marketo tracking code

I'm investigating how to implement Marketo tracking visitor, email, white-paper, webinar,...
I have research about it, but i just know install script munchkin, but i don't know how to get it works?
Anybody could help me understand more about it? Thanks a lot.
If I am understanding you correctly you want to insert the marketo "munchin api" script into the footer of your document as you would with Google analytics.
<script src="http://munchkin.marketo.net/munchkin.js" type="text/javascript"></script>
<script>mktoMunchkin("YOUR ID HERE");</script>
You can get this code by logining into Marketo, going to "admin" in the top right, than going to "munchkin setup" in the left navigation bar. You can will see your code which you can copy and paste into the footer. This is all outlined on this marketo setup guide.
Hope this helps.
Marketo developer evangelist here. We document how to implement Munchkin, which is Marketo's tracking code, on our developer's site.

Create screenshot of the page with Watin-like tool

I need to create a screenshot of the page by providing a page URL to the command line tool. I found the following application: Convert HTML To Image. This tool is OK but want a more flexible application. I need to have ability to perform the following:
Go to the following page.
Click button.
Take a screenshot and save it.
I want to create an application that will test a site by going by URL, take a shots, and then send the images to the email.
Does anybody has an experience in solving such problems?
Watin can capture screenshots:
ie.CaptureWebPageToFile("c:\tmp\watin main page.jpg");
More info:
http://watin.sourceforge.net/releasenotes-1-2-0-4000.html
http://fwdnug.com/blogs/ddodgen/archive/2008/06/19/watin-api-capturewebpagetofile.aspx
I am a contributor to the WatiN project and the author of the WatiN Test Recorder. To do what you want, I'd suggest using something like csExWB2 (http://code.google.com/p/csexwb2/). The demo will give you the basic browser, and you can add screen shots where you like. Emailing is not covered, but that should be fairly easy.
I know this is very old post but i want to leave a message for visitor of this post.
PhantomJS is one option (http://www.phantomjs.org).
According to the WatiN features page:
Supports creating screenshots of webpages
I would direct you to more specifical documentation, but the documentation web doesn't work well with Firefox, so I can't search it.