If you enjoy this item, Don't forget to rate
In the js/script.js find below line (line 18) and set your target Date:
if($('#coundown-holder').length>0){
$('#coundown-holder').countDown({
targetDate: {
'day': 1,
'month': 1,
'year': 2015,
'hour': 0,
'min': 0,
'sec': 0
}
});
}
To config contact form, open submit.php and edit :
/* config start */ $emailAddress = 'you@gmail.com'; $fromName="example company"; $gmail=false; /* NOTE: IF YOU RECIEVED THIS MESSAGE "Error Occured:Could not instantiate mail function." YOU SHOULD SET SMTP CONFIG * AND SET $SMTP VALUE TO TRUE */ /* config end */
if your host support Mail() function, set $gmail=false and enter email address and fromname, but if your server blocked mail() to prevent spamming, you should use SMTP, so set $gmail=true and setSMTP configuration, I write here for gmail, and you can use another smtp server, just need to set right configuration:
if($gmail){
$mail->IsSMTP(); $mail->Host = "smtp.gmail.com";
$mail->SMTPSecure = "ssl";
$mail->Port = 465; // optional // used only when SMTP requires authentication
$mail->SMTPAuth = true;
$mail->Username = 'GMAIL USERNAME';
$mail->Password = 'YOUR GMAIL PASSWORD';
}
Other servers:
Gmail
smtp_host: smtp.gmail.com smtp_port: 465 smtp_ssl: 1
Hotmail
smtp_host: smtp.live.com smtp_port: 25 or 587 smtp_start_tls: 1
Yahoo Mail Plus (currently a paid service)
smtp_host: smtp.mail.yahoo.com smtp_port: 25
The 3D background should be Wavefront .obj file
You can convert your logo from 2D to 3D with Blender software. and export obj file.
Replace exprted file in folder image/3D/model.obj file
Download Blender: https://www.blender.org/download/
Blender-Converting 2D Image to 3D Object : https://www.youtube.com/watch?v=ows2QTiMRPg
Question:
Nothing works like demo? what is the problem?
Answer:
Don't simply open index.html on your computer, you must upload it to a live server or test on localhost (like XAMPP)
Question:
My 3D object file not loads, why?
Answer:
Check Axis and compare with demo file:
